示例#1
0
 public function testChaptersRead()
 {
     $chapter = rand();
     $manga = new Manga();
     $manga->setChaptersRead($chapter);
     $this->assertEquals($chapter, $manga->getChaptersRead());
 }