コード例 #1
0
ファイル: FactoryTest.php プロジェクト: nimasdj/PHP-CryptLib
 /**
  * @expectedException InvalidArgumentException
  */
 public function testRegisterCipherFail()
 {
     $factory = new Factory();
     $factory->registerCipher('test', 'stdClass');
 }