コード例 #1
0
ファイル: SessionConfigTest.php プロジェクト: haoyanfei/zf2
 public function testSettingInvalidHashBitsPerCharacterRaisesException()
 {
     $this->setExpectedException('Zend\\Session\\Exception\\InvalidArgumentException', 'Invalid hash bits per character provided');
     $this->config->setHashBitsPerCharacter('foobar_bogus');
 }