Ejemplo n.º 1
0
 function testTemplateWithCustomExtension()
 {
     $this->view->set('name', 'Bob');
     $this->view->extension = '.html';
     $this->view->render('world');
     $this->expectOutputString('Hello world, Bob!');
 }
Ejemplo n.º 2
0
 function testFetch()
 {
     $output = $this->view->fetch('hello', array('name' => 'Bob'));
     $this->assertEquals('Hello, Bob!', $output);
 }