예제 #1
0
파일: ViewTest.php 프로젝트: NDStudios/mc
 function testTemplateWithCustomExtension()
 {
     $this->view->set('name', 'Bob');
     $this->view->extension = '.html';
     $this->view->render('world');
     $this->expectOutputString('Hello world, Bob!');
 }
예제 #2
0
 function testFetch()
 {
     $output = $this->view->fetch('hello', array('name' => 'Bob'));
     $this->assertEquals('Hello, Bob!', $output);
 }