コード例 #1
0
ファイル: ResultsTest.php プロジェクト: mitchlayzell/PHRETS
 /** @test **/
 public function it_holds_errors()
 {
     $rs = new Results();
     $rs->setError('test');
     $this->assertSame('test', $rs->getError());
 }