示例#1
0
 public function testRenderingPartialShouldFailOnInvalidPartialArray()
 {
     $this->_helper->setPartial(array('bc.phtml'));
     try {
         $this->_helper->render();
         $this->fail('$partial was invalid, but no Zend_View_Exception was thrown');
     } catch (Zend_View_Exception $e) {
     }
 }