コード例 #1
0
ファイル: BlockCipherTest.php プロジェクト: necrogami/zf2
 public function testSetAlgorithm()
 {
     $result = $this->blockCipher->setCipherAlgorithm('blowfish');
     $this->assertEquals($result, $this->blockCipher);
     $this->assertEquals('blowfish', $this->blockCipher->getCipherAlgorithm());
 }