Changeset 51568 for trunk/tests/phpunit/tests/functions/deprecated.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/deprecated.php
r50450 r51568 38 38 * Sets up the test fixture. 39 39 */ 40 public function set Up() {41 parent::set Up();40 public function set_up() { 41 parent::set_up(); 42 42 $this->_deprecated_functions = array(); 43 43 $this->_deprecated_arguments = array(); … … 54 54 * Tears down the test fixture. 55 55 */ 56 public function tear Down() {56 public function tear_down() { 57 57 remove_action( 'deprecated_function_run', array( $this, 'deprecated_function' ), 10, 3 ); 58 58 remove_action( 'deprecated_function_trigger_error', '__return_false' ); … … 61 61 remove_action( 'deprecated_file_included', array( $this, 'deprecated_argument' ), 10, 4 ); 62 62 remove_action( 'deprecated_file_trigger_error', '__return_false' ); 63 parent::tear Down();63 parent::tear_down(); 64 64 } 65 65
Note: See TracChangeset
for help on using the changeset viewer.