assertSame(self::$dependency, $dependency); } /** * @depends !clone testOne */ public function testThree($dependency) { $this->assertSame(self::$dependency, $dependency); } /** * @depends clone testOne */ public function testFour($dependency) { $this->assertNotSame(self::$dependency, $dependency); } }