setUpSmarty(__DIR__); } public function testInit() { $this->cleanDirs(); } /** * test $smarty->templateExists true */ public function testSmartyTemplateExists() { $this->assertTrue($this->smarty->templateExists('helloworld.tpl')); } /** * test $smarty->templateExists false */ public function testSmartyTemplateNotExists() { $this->assertFalse($this->smarty->templateExists('notthere.tpl')); } }