Пример #1
0
 public function testResultMethodReturnsANewResultInstance()
 {
     $this->assertInstanceOf('\\Gasp\\Result', $this->run->result());
     $a = $this->run->result();
     $b = $this->run->result();
     $this->assertNotEquals(spl_object_hash($a), spl_object_hash($b));
 }