ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ 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
Definition:
ilMustacheFactoryTest.php:24
ilMustacheFactoryTest\testCreateBasicEngine
testCreateBasicEngine()
Definition:
ilMustacheFactoryTest.php:31
ilMustacheFactoryTest\testCreatInstance
testCreatInstance()
Definition:
ilMustacheFactoryTest.php:25
ilMustacheFactory
Definition:
class.ilMustacheFactory.php:22
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
components
ILIAS
Mail
tests
Mustache
ilMustacheFactoryTest.php
Generated on Sat Oct 18 2025 23:03:24 for ILIAS by
1.9.4 (using
Doxyfile
)