updateScore() публичный Метод

public updateScore ( Bundle $bundle )
$bundle Knp\Bundle\KnpBundlesBundle\Entity\Bundle
Пример #1
0
 /**
  * @dataProvider provideFollowers
  */
 public function testFollowersScoreDetail($followers)
 {
     $bundle = new Bundle();
     $bundle->setNbFollowers($followers);
     $tester = new FollowersListener();
     $tester->updateScore($bundle);
     $bundle->recalculateScore();
     // 1 follower = 1 point
     $this->assertEquals($followers, $bundle->getScore());
 }