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