Changeset 51869 for trunk/tests/phpunit/tests/option/multisite.php
- Timestamp:
- 09/25/2021 01:27:47 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/multisite.php
r51568 r51869 11 11 */ 12 12 class Tests_Multisite_Option extends WP_UnitTestCase { 13 protected $suppress = false;14 15 function set_up() {16 global $wpdb;17 parent::set_up();18 $this->suppress = $wpdb->suppress_errors();19 }20 21 function tear_down() {22 global $wpdb;23 $wpdb->suppress_errors( $this->suppress );24 parent::tear_down();25 }26 13 27 14 function test_from_same_site() {
Note: See TracChangeset
for help on using the changeset viewer.