mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
See #41125. git-svn-id: https://develop.svn.wordpress.org/trunk@56470 602fd350-edb4-49c9-b593-d223f7449a82
15 lines
280 B
PHP
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();
|
|
}
|
|
}
|