Пример #1
0
 public function testInitializedObjectsDifferAtEachInitialization()
 {
     $testCase = new TestsCases\BaseTestCase();
     $testCase->getInitializedObjectProperty()->add("foo");
     $testCase2 = new TestsCases\BaseTestCase();
     $this->assertEquals(0, count($testCase2->getInitializedObjectProperty()));
 }