20 protected function setUp() : void
22 if (defined(
'ILIAS_PHPUNIT_CONTEXT')) {
23 require_once
'./Services/PHPUnit/classes/class.ilUnitUtil.php';
24 ilUnitUtil::performInitialisation();
26 chdir(dirname(__FILE__));
31 include_once(
"./Services/Component/classes/class.ilPluginAdmin.php");
32 global $ilPluginAdmin;
33 $ilPluginAdmin = $this->getMockBuilder(
'ilPluginAdmin')
35 $ilPluginAdmin->method(
'getActivePluginsForSlot')
36 ->willReturn(array());
44 include_once(
"./Services/UICore/classes/class.ilTemplate.php");
45 $tpl =
new ilTemplate(
"tpl.test_template_1.html",
true,
true,
"Services/UICore/test");
46 $tpl->setVariable(
"CONTENT",
"Hello World");
48 $actual =
$tpl->get();
51 $expected =
"<b>Hello World</b>";
55 "ilTemplate get() not rendered properly."
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
testilTemplateGet()
enabled
Unit tests for template class.