示例#1
0
 public function testGenres()
 {
     $genres = 'Comedy, Parody, School, Slice of Life';
     $manga = new Manga();
     $manga->setGenres($genres);
     $this->assertEquals($genres, $manga->getGenres());
 }