Changeset 51568 for trunk/tests/phpunit/tests/blocks/context.php
- Timestamp:
- 08/07/2021 10:29:41 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/context.php
r51491 r51568 27 27 * Sets up each test method. 28 28 */ 29 public function set Up() {29 public function set_up() { 30 30 global $post; 31 31 32 parent::set Up();32 parent::set_up(); 33 33 34 34 $args = array( … … 44 44 * Tear down each test method. 45 45 */ 46 public function tear Down() {46 public function tear_down() { 47 47 while ( ! empty( $this->registered_block_names ) ) { 48 48 $block_name = array_pop( $this->registered_block_names ); … … 50 50 } 51 51 52 parent::tear Down();52 parent::tear_down(); 53 53 } 54 54
Note: See TracChangeset
for help on using the changeset viewer.