Changeset 51568 for trunk/tests/phpunit/tests/db.php
- Timestamp:
- 08/07/2021 10:29:41 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/db.php
r51462 r51568 22 22 protected static $_wpdb; 23 23 24 public static function set UpBeforeClass() {25 parent::set UpBeforeClass();24 public static function set_up_before_class() { 25 parent::set_up_before_class(); 26 26 self::$_wpdb = new WpdbExposedMethodsForTesting(); 27 27 } … … 30 30 * Set up the test fixture 31 31 */ 32 public function set Up() {33 parent::set Up();32 public function set_up() { 33 parent::set_up(); 34 34 $this->_queries = array(); 35 35 add_filter( 'query', array( $this, 'query_filter' ) );
Note: See TracChangeset
for help on using the changeset viewer.