Changeset 54889 for trunk/tests/phpunit/tests/block-supports/colors.php
- Timestamp:
- 11/29/2022 12:32:37 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/block-supports/colors.php
r54211 r54889 11 11 private $test_block_name; 12 12 13 function set_up() {13 public function set_up() { 14 14 parent::set_up(); 15 15 $this->test_block_name = null; 16 16 } 17 17 18 function tear_down() {18 public function tear_down() { 19 19 unregister_block_type( $this->test_block_name ); 20 20 $this->test_block_name = null; … … 25 25 * @ticket 54337 26 26 */ 27 function test_color_slugs_with_numbers_are_kebab_cased_properly() {27 public function test_color_slugs_with_numbers_are_kebab_cased_properly() { 28 28 $this->test_block_name = 'test/color-slug-with-numbers'; 29 29 register_block_type( … … 69 69 * @ticket 55505 70 70 */ 71 function test_color_with_skipped_serialization_block_supports() {71 public function test_color_with_skipped_serialization_block_supports() { 72 72 $this->test_block_name = 'test/color-with-skipped-serialization-block-supports'; 73 73 register_block_type( … … 110 110 * @ticket 55505 111 111 */ 112 function test_gradient_with_individual_skipped_serialization_block_supports() {112 public function test_gradient_with_individual_skipped_serialization_block_supports() { 113 113 $this->test_block_name = 'test/gradient-with-individual-skipped-serialization-block-support'; 114 114 register_block_type(
Note: See TracChangeset
for help on using the changeset viewer.