setUpSmarty(__DIR__); } public function testInit() { $this->cleanDirs(); } /** * test unknown function error */ public function testUnknownFunction() { $this->smarty->enableSecurity(); $this->expectException(\Smarty\CompilerException::class); $this->expectExceptionMessage('Cannot compile unknown function unknown'); $this->smarty->fetch('eval:{unknown()}'); } }