Example #1
0
 public function testAll()
 {
     $template = new Template();
     $template->setRootDirectory(__DIR__);
     $output = $template->render('template', array('value' => 5 * 5));
     $this->assertSame('5 * 5 = 25', $output);
 }