Пример #1
0
 public function testGetTotalScoreReturnNegativeScore()
 {
     $comment = new Comment();
     $comment->addRating($this->badRating);
     $actual = $comment->getTotalScore();
     $this->assertEquals(-1, $actual);
 }