コード例 #1
0
ファイル: HeadLinkTest.php プロジェクト: travisj/zf
 public function testSetThrowsExceptionWithoutArrayArgument()
 {
     try {
         $this->helper->set('foo');
         $this->fail('set should raise exception without array argument');
     } catch (Exception $e) {
     }
 }
コード例 #2
0
 public function testSetThrowsExceptionWithoutArrayArgument()
 {
     $this->setExpectedException('Zend\View\Exception\ExceptionInterface');
     $this->helper->set('foo');
 }