Files
wordpress-develop/tests/phpunit/tests/admin/wpUserSearch.php
Drew Jaynes 2f76410f8b Fix coding standards for Tests_Admin_wpUserSearch
See #41125.


git-svn-id: https://develop.svn.wordpress.org/trunk@56470 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-25 03:42:48 +00:00

15 lines
280 B
PHP

<?php
/**
* @coversDefaultClass WP_User_Search
*/
class Tests_Admin_wpUserSearch extends WP_UnitTestCase {
/**
* @covers ::__construct()
* @expectedDeprecated WP_User_Search
*/
public function test_class_is_deprecated() {
$wp_user_search = new WP_User_Search();
}
}