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$ @group needsInstalledILIAS
Definition at line 13 of file ilTemplateTest.php.
◆ setUp()
ilTemplateTest::setUp |
( |
| ) |
|
|
protected |
Setup.
Definition at line 18 of file ilTemplateTest.php.
19 {
20 if (
defined(
'ILIAS_PHPUNIT_CONTEXT')) {
21 require_once './Services/PHPUnit/classes/class.ilUnitUtil.php';
22 ilUnitUtil::performInitialisation();
23 } else {
24 chdir(dirname(__FILE__));
25 chdir('../../../');
26 }
27
28
29 include_once("./Services/Component/classes/class.ilPluginAdmin.php");
30 global $ilPluginAdmin;
31 $ilPluginAdmin = $this->getMockBuilder('ilPluginAdmin')
32 ->getMock();
33 $ilPluginAdmin->method('getActivePluginsForSlot')
34 ->willReturn(array());
35 }
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
References defined.
◆ testilTemplateGet()
ilTemplateTest::testilTemplateGet |
( |
| ) |
|
@backupGlobals enabled
Definition at line 40 of file ilTemplateTest.php.
41 {
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");
45
46 $actual =
$tpl->get();
47
48
49 $expected = "<b>Hello World</b>";
50 $this->assertEquals(
51 $actual,
52 $expected,
53 "ilTemplate get() not rendered properly."
54 );
55 }
special template class to simplify handling of ITX/PEAR
References $tpl.
The documentation for this class was generated from the following file: