Files
wordpress-develop/tests/phpunit/tests/functions/wp.php
T
2020-09-19 15:52:03 +00:00

21 lines
373 B
PHP

<?php
/**
* @group functions.php
* @group query
* @covers ::wp
*/
class Tests_Functions_WP extends WP_UnitTestCase {
public function test_wp_sets_global_vars() {
global $wp, $wp_query, $wp_the_query;
wp();
$this->assertInstanceOf( 'WP', $wp );
$this->assertInstanceOf( 'WP_Query', $wp_query );
$this->assertInstanceOf( 'WP_Query', $wp_the_query );
}
}