コード例 #1
0
ファイル: RoleVoterTest.php プロジェクト: laubosslink/lab
 /**
  * @dataProvider getVoteTests
  */
 public function testVote($roles, $attributes, $expected)
 {
     $voter = new RoleVoter();
     $this->assertSame($expected, $voter->vote($this->getToken($roles), null, $attributes));
 }