3 use PHPUnit\Framework\TestCase;
7 public function test_harness_is_in_place() {
8 $this->assertTrue(TRUE);
11 public function test_side_effect_isolation_1_of_2() {
12 $GLOBALS[
'foo'] = 1234;
18 public function test_side_effect_isolation_2_of_2() {
19 $this->assertArrayNotHasKey(
'foo', $GLOBALS);