ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
ilMustacheFactoryTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  public function testCreatInstance(): void
26  {
27  $f = new ilMustacheFactory();
28  $this->assertInstanceOf(ilMustacheFactory::class, $f);
29  }
30 
31  public function testCreateBasicEngine(): void
32  {
33  $f = new ilMustacheFactory();
34  $engine = $f->getBasicEngine();
35  $this->assertInstanceOf(Mustache_Engine::class, $engine);
36  }
37 }