function testTemplateWithCustomExtension() { $this->view->set('name', 'Bob'); $this->view->extension = '.html'; $this->view->render('world'); $this->expectOutputString('Hello world, Bob!'); }
function testRender() { $this->view->render('hello', array('name' => 'Bob')); $this->expectOutputString('Hello, Bob!'); }