ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
ilMustacheFactoryTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
PHPUnit\Framework\TestCase
;
22
23
class
ilMustacheFactoryTest
extends
TestCase
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
}
ilMustacheFactoryTest\testCreatInstance
testCreatInstance()
Definition:
ilMustacheFactoryTest.php:25
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
ilMustacheFactory
ilMustacheFactoryTest\testCreateBasicEngine
testCreateBasicEngine()
Definition:
ilMustacheFactoryTest.php:31
ilMustacheFactoryTest
Definition:
ilMustacheFactoryTest.php:23
TestCase
TestCase
components
ILIAS
Mail
tests
Mustache
ilMustacheFactoryTest.php
Generated on Wed Sep 3 2025 23:03:24 for ILIAS by
1.8.13 (using
Doxyfile
)