Example #1
0
 /**
  * @testdox Unknown methods such as isBlock() and isPassthrough() are forwarded to this template's TemplateForensics instance
  */
 public function testForensicsMethods()
 {
     $template = new Template('<hr/>');
     $this->assertTrue($template->isBlock());
     $this->assertFalse($template->isPassthrough());
 }