Example #1
0
 public function testMapFilesToTemplateRegistryOnConstruct()
 {
     $view = new View(new TemplateRegistry(array('foo' => __DIR__ . '/foo_template.php')), new TemplateRegistry(), new HelperRegistry());
     $view->setView('foo');
     $actual = $view->__invoke();
     $expect = 'Hello Foo!';
     $this->assertSame($expect, $actual);
 }