Exemplo n.º 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\\ExceptionInterface was thrown');
     } catch (ExceptionInterface $e) {
     }
 }