wordpress-develop/tests/phpunit/tests/admin/wpUserSearch.php
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();
}
}