예제 #1
0
 public function testChaptersRead()
 {
     $chap = rand();
     $review = new Review();
     $review->setChaptersRead($chap);
     $this->assertEquals($chap, $review->getChaptersRead());
 }