Changeset 51491
- Timestamp:
- 07/26/2021 06:45:48 PM (4 years ago)
- Location:
- trunk/tests/phpunit/tests/blocks
- Files:
-
- 2 edited
- 10 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/context.php
r51490 r51491 1 1 <?php 2 2 /** 3 * WP_Block_Context Tests3 * Block context tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for WP_Block_Context11 * Tests for block context functions. 12 12 * 13 13 * @since 5.5.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Block_Context_Test extends WP_UnitTestCase {17 class Tests_Blocks_Context extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/editor.php
r51490 r51491 1 1 <?php 2 2 /** 3 * WP_Block Tests3 * Block editor tests 4 4 * 5 5 * @package WordPress … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Block_Editor extends WP_UnitTestCase {17 class Tests_Blocks_Editor extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/register.php
r51268 r51491 1 1 <?php 2 2 /** 3 * Block registr y tests.3 * Block registration tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for register_block_type(), unregister_block_type(), get_dynamic_block_names() 11 * Tests for register_block_type(), unregister_block_type(), get_dynamic_block_names(). 12 12 * 13 13 * @since 5.0.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Block_Register extends WP_UnitTestCase {17 class Tests_Blocks_Register extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/render.php
r51462 r51491 1 1 <?php 2 2 /** 3 * Block rendering tests .3 * Block rendering tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for block rendering functions 11 * Tests for block rendering functions. 12 12 * 13 13 * @since 5.0.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Block_Render extends WP_UnitTestCase {17 class Tests_Blocks_Render extends WP_UnitTestCase { 18 18 /** 19 19 * The location of the fixtures to test with. -
trunk/tests/phpunit/tests/blocks/renderReusable.php
r51490 r51491 1 1 <?php 2 2 /** 3 * Reusable block rendering tests .3 * Reusable block rendering tests 4 4 * 5 5 * @package WordPress … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Render_Reusable_Blocksextends WP_UnitTestCase {17 class Tests_Blocks_RenderReusable extends WP_UnitTestCase { 18 18 /** 19 19 * Fake user ID. -
trunk/tests/phpunit/tests/blocks/serialize.php
r51490 r51491 1 1 <?php 2 2 /** 3 * Block serialization tests .3 * Block serialization tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for block serialization functions 11 * Tests for block serialization functions. 12 12 * 13 13 * @since 5.3.3 … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Block_Serializationextends WP_UnitTestCase {17 class Tests_Blocks_Serialize extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/supportedStyles.php
r51490 r51491 1 1 <?php 2 2 /** 3 * Block Tests3 * Block supported style tests 4 4 * 5 5 * @package WordPress … … 15 15 * @group blocks 16 16 */ 17 class Block_Supported_Styles_Testextends WP_UnitTestCase {17 class Tests_Blocks_SupportedStyles extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/wpBlock.php
r51490 r51491 1 1 <?php 2 2 /** 3 * WP_Block Tests3 * WP_Block tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for WP_Block 11 * Tests for WP_Block. 12 12 * 13 13 * @since 5.5.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Block_Testextends WP_UnitTestCase {17 class Tests_Blocks_wpBlock extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/wpBlockList.php
r51490 r51491 1 1 <?php 2 2 /** 3 * WP_Block_List tests .3 * WP_Block_List tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for WP_Block_List 11 * Tests for WP_Block_List. 12 12 * 13 13 * @since 5.5.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Block_List_Test extends WP_UnitTestCase {17 class Tests_Blocks_wpBlockList extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/wpBlockParser.php
r51490 r51491 1 1 <?php 2 2 /** 3 * WP_Block_Parser tests .3 * WP_Block_Parser tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for WP_Block_Parser 11 * Tests for WP_Block_Parser. 12 12 * 13 13 * @since 5.0.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Block_Parser extends WP_UnitTestCase {17 class Tests_Blocks_wpBlockParser extends WP_UnitTestCase { 18 18 /** 19 19 * The location of the fixtures to test with. -
trunk/tests/phpunit/tests/blocks/wpBlockType.php
r51490 r51491 1 1 <?php 2 2 /** 3 * WP_Block_Type Tests3 * WP_Block_Type tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for WP_Block_Type 11 * Tests for WP_Block_Type. 12 12 * 13 13 * @since 5.0.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Block_Type extends WP_UnitTestCase {17 class Tests_Blocks_wpBlockType extends WP_UnitTestCase { 18 18 19 19 /** -
trunk/tests/phpunit/tests/blocks/wpBlockTypeRegistry.php
r51490 r51491 1 1 <?php 2 2 /** 3 * WP_Block_Type_Registry Tests3 * WP_Block_Type_Registry tests 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Tests for WP_Block_Type_Registry 11 * Tests for WP_Block_Type_Registry. 12 12 * 13 13 * @since 5.0.0 … … 15 15 * @group blocks 16 16 */ 17 class WP_Test_Block_Type_Registry extends WP_UnitTestCase {17 class Tests_Blocks_wpBlockTypeRegistry extends WP_UnitTestCase { 18 18 19 19 /**
Note: See TracChangeset
for help on using the changeset viewer.