Ticket #39265: q-folder.patch
File q-folder.patch, 7.4 KB (added by , 4 years ago) |
---|
-
tests/phpunit/tests/query/commentCount.php
1 1 <?php 2 2 /** 3 3 * @group query 4 * 5 * @covers WP_Query 4 6 */ 5 7 class Tests_Query_CommentCount extends WP_UnitTestCase { 6 8 public static $post_ids = array(); -
tests/phpunit/tests/query/conditionals.php
8 8 * 9 9 * @group query 10 10 * @group rewrite 11 * 12 * @covers WP_Query 11 13 */ 12 14 class Tests_Query_Conditionals extends WP_UnitTestCase { 13 15 -
tests/phpunit/tests/query/date.php
5 5 * 6 6 * @group query 7 7 * @group date 8 * 9 * @covers WP_Query 8 10 */ 9 11 class Tests_Query_Date extends WP_UnitTestCase { 10 12 -
tests/phpunit/tests/query/dateQuery.php
8 8 * @group query 9 9 * @group date 10 10 * @group datequery 11 * 12 * @covers WP_Query 11 13 */ 12 14 class Tests_Query_DateQuery extends WP_UnitTestCase { 13 15 -
tests/phpunit/tests/query/generatePostdata.php
2 2 3 3 /** 4 4 * @group query 5 * 5 6 * @covers ::generate_postdata 6 7 */ 7 8 class Tests_Query_GeneratePostdata extends WP_UnitTestCase { -
tests/phpunit/tests/query/invalidQueries.php
2 2 3 3 /** 4 4 * @group query 5 * 6 * @covers WP_Query 5 7 */ 6 8 class Tests_Query_InvalidQueries extends WP_UnitTestCase { 7 9 -
tests/phpunit/tests/query/isTerm.php
9 9 * @group query 10 10 * @group rewrite 11 11 * @group taxonomy 12 * 13 * @covers WP_Query 12 14 */ 13 15 class Tests_Query_IsTerm extends WP_UnitTestCase { 14 16 protected $tag_id; -
tests/phpunit/tests/query/metaQuery.php
3 3 /** 4 4 * @group query 5 5 * @group meta 6 * 7 * @covers WP_Query 6 8 */ 7 9 class Tests_Query_MetaQuery extends WP_UnitTestCase { 8 10 public function test_meta_query_no_key() { -
tests/phpunit/tests/query/noFoundRows.php
2 2 3 3 /** 4 4 * @group query 5 * 6 * @covers WP_Query 5 7 */ 6 8 class Tests_Query_NoFoundRows extends WP_UnitTestCase { 7 9 public function test_no_found_rows_default() { -
tests/phpunit/tests/query/parseQuery.php
2 2 3 3 /** 4 4 * @group query 5 * 6 * @covers WP_Query 5 7 */ 6 8 class Tests_Query_ParseQuery extends WP_UnitTestCase { 7 9 /** -
tests/phpunit/tests/query/postStatus.php
2 2 3 3 /** 4 4 * @group query 5 * 6 * @covers WP_Query 5 7 */ 6 8 class Tests_Query_PostStatus extends WP_UnitTestCase { 7 9 public static $editor_user_id; -
tests/phpunit/tests/query/results.php
5 5 * We're testing against a known data set, so we can check that specific posts are included in the output. 6 6 * 7 7 * @group query 8 * 9 * @covers WP_Query 8 10 */ 9 11 class Tests_Query_Results extends WP_UnitTestCase { 10 12 protected $q; -
tests/phpunit/tests/query/search.php
2 2 /** 3 3 * @group query 4 4 * @group search 5 * 6 * @covers WP_Query 5 7 */ 6 8 class Tests_Query_Search extends WP_UnitTestCase { 7 9 protected $q; -
tests/phpunit/tests/query/setupPostdata.php
3 3 /** 4 4 * @group query 5 5 * @covers ::setup_postdata 6 * 7 * @covers WP_Query 6 8 */ 7 9 class Tests_Query_SetupPostdata extends WP_UnitTestCase { 8 10 protected $global_keys = array( 'id', 'authordata', 'currentday', 'currentmonth', 'page', 'pages', 'multipage', 'more', 'numpages' ); -
tests/phpunit/tests/query/stickies.php
4 4 * Tests related to sticky functionality in WP_Query. 5 5 * 6 6 * @group query 7 * 8 * @covers WP_Query 7 9 */ 8 10 class Tests_Query_Stickies extends WP_UnitTestCase { 9 11 public static $posts = array(); -
tests/phpunit/tests/query/taxQuery.php
3 3 /** 4 4 * @group query 5 5 * @group taxonomy 6 * 7 * @covers WP_Query 6 8 */ 7 9 class Tests_Query_TaxQuery extends WP_UnitTestCase { 8 10 public function test_tax_query_single_query_single_term_field_slug() { -
tests/phpunit/tests/query/vars.php
4 4 * Tests to make sure query vars are as expected. 5 5 * 6 6 * @group query 7 * 8 * @covers WP_Query 7 9 */ 8 10 class Tests_Query_Vars extends WP_UnitTestCase { 9 11 -
tests/phpunit/tests/query/verboseRewriteRules.php
5 5 /** 6 6 * @group query 7 7 * @group rewrite 8 * 9 * @covers WP_Query 8 10 */ 9 11 class Tests_Query_VerbosePageRules extends Tests_Query_Conditionals { 10 12 function setUp() {