- Timestamp:
- 02/20/2024 07:25:38 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/plugin-dependencies/base.php
r57545 r57658 33 33 'circular_dependencies_pairs' => null, 34 34 'circular_dependencies_slugs' => null, 35 'initialized' => false, 35 36 ); 36 37 … … 63 64 * Resets all static properties to a default value after each test. 64 65 */ 65 public function set_up() { 66 parent::set_up(); 67 66 public function tear_down() { 68 67 foreach ( self::$static_properties as $name => $default_value ) { 69 68 $this->set_property_value( $name, $default_value ); 70 69 } 70 71 parent::tear_down(); 71 72 } 72 73
Note: See TracChangeset
for help on using the changeset viewer.