Example #1
0
 public function testGetHtplInstance()
 {
     $provider = new ArrayProvider(['test.htpl' => '{var}']);
     $htpl = new Htpl($provider);
     $template = new Template($htpl, 'some template string');
     $this->assertInstanceOf('Webiny\\Htpl\\Htpl', $template->getHtplInstance());
 }