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