Пример #1
0
 /**
  * @expectedException     \RuntimeException
  * @expectedExceptionMessage template error
  */
 public function testFetchException()
 {
     $render = new Render(Fenom::factory("."), function () {
         echo "error";
         throw new \RuntimeException("template error");
     }, array("name" => "render.tpl"));
     $render->fetch(array());
 }