Unit tests for template class.
More...
Unit tests for template class.
- Author
- Alex Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de
- Version
- $Id$ needsInstalledILIAS
Definition at line 13 of file ilTemplateTest.php.
◆ setUp()
ilTemplateTest::setUp |
( |
| ) |
|
|
protected |
Setup.
Definition at line 18 of file ilTemplateTest.php.
References array, and defined.
20 if (
defined(
'ILIAS_PHPUNIT_CONTEXT')) {
21 require_once
'./Services/PHPUnit/classes/class.ilUnitUtil.php';
22 ilUnitUtil::performInitialisation();
24 chdir(dirname(__FILE__));
29 include_once(
"./Services/Component/classes/class.ilPluginAdmin.php");
30 global $ilPluginAdmin;
31 $ilPluginAdmin = $this->getMockBuilder(
'ilPluginAdmin')
33 $ilPluginAdmin->method(
'getActivePluginsForSlot')
34 ->willReturn(
array());
Create styles array
The data for the language used.
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
◆ testilTemplateGet()
ilTemplateTest::testilTemplateGet |
( |
| ) |
|
enabled
Definition at line 40 of file ilTemplateTest.php.
References $tpl.
42 include_once(
"./Services/UICore/classes/class.ilTemplate.php");
43 $tpl =
new ilTemplate(
"tpl.test_template_1.html",
true,
true,
"Services/UICore/test");
44 $tpl->setVariable(
"CONTENT",
"Hello World");
46 $actual =
$tpl->get();
49 $expected =
"<b>Hello World</b>";
53 "ilTemplate get() not rendered properly."
special template class to simplify handling of ITX/PEAR
The documentation for this class was generated from the following file: