ILIAS  trunk Revision v11.0_alpha-1846-g895b5f47236
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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 }