Example #1
0
 public function testCategory()
 {
     $artist = new Artiste();
     $artist->setPopularite(80);
     $result = $artist->getCategory();
     $this->assertEquals('Super-Star', $result);
 }