コード例 #1
0
ファイル: CommentTest.php プロジェクト: sonu27/REST-api-test
 public function testGetTotalScoreReturnNegativeScore()
 {
     $comment = new Comment();
     $comment->addRating($this->badRating);
     $actual = $comment->getTotalScore();
     $this->assertEquals(-1, $actual);
 }