setUpSmarty(__DIR__); } /** * 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')); } }