コード例 #1
0
ファイル: NetizenTest.php プロジェクト: xtrasmal/iinano
 public function testCredentialStrategy()
 {
     $strat = $this->getMock('Trismegiste\\SocialBundle\\Security\\Credential\\Strategy');
     $this->sut->setCredential($strat);
     $this->assertEquals($strat, $this->sut->getCredential());
     $this->sut->eraseCredentials();
     // for CC
 }