示例#1
0
文件: InputTest.php 项目: stunti/zf2
 public function testSetPluginLoaderInvalidType()
 {
     $input = new InputFilter(null, null);
     $loader = new PluginLoader();
     $this->setExpectedException('\\Zend\\Filter\\Exception', 'Invalid type');
     $input->setPluginLoader($loader, 'foo');
 }