Definition at line 31 of file LSControlBuilderTest.php.
◆ setUp()
LSControlBuilderTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 37 of file LSControlBuilderTest.php.
References $lang.
39 $ui_factory = $this->mockUIFactory();
40 $lang = $this->mockIlLanguage();
43 $uri = $data_factory->uri(
'https://ilias.de/somepath');
46 $uri = $data_factory->uri(
'http://ilias.de/some/other/path');
49 $this->control_builder =
new LSControlBuilder($ui_factory, $url_builder,
$lang, $settings, $lp_url_builder);
Global Settings of the Learning Sequence.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ testConstruction()
LSControlBuilderTest::testConstruction |
( |
| ) |
|
Definition at line 52 of file LSControlBuilderTest.php.
54 $this->assertInstanceOf(ControlBuilder::class, $this->control_builder);
◆ testDone()
LSControlBuilderTest::testDone |
( |
| ) |
|
Definition at line 156 of file LSControlBuilderTest.php.
158 $cb = $this->control_builder->done(
'cmd', 1);
159 $this->assertInstanceOf(ControlBuilder::class, $cb);
160 $this->assertInstanceOf(
Button\Primary::class, $cb->getDoneControl());
◆ testExit()
LSControlBuilderTest::testExit |
( |
| ) |
|
Definition at line 67 of file LSControlBuilderTest.php.
69 $cb = $this->control_builder->exit(
'cmd');
70 $this->assertInstanceOf(ControlBuilder::class, $cb);
71 $this->assertInstanceOf(
Button\Bulky::class, $cb->getExitControl());
◆ testGeneric()
LSControlBuilderTest::testGeneric |
( |
| ) |
|
Definition at line 140 of file LSControlBuilderTest.php.
142 $cb = $this->control_builder->generic(
'label',
'cmd', 1);
143 $this->assertInstanceOf(ControlBuilder::class, $cb);
144 $this->assertInstanceOf(
Button\Standard::class, $cb->getControls()[0]);
◆ testInitialValues()
LSControlBuilderTest::testInitialValues |
( |
| ) |
|
Definition at line 57 of file LSControlBuilderTest.php.
59 $this->assertNull($this->control_builder->getExitControl());
60 $this->assertNull($this->control_builder->getNextControl());
61 $this->assertNull($this->control_builder->getPreviousControl());
62 $this->assertNull($this->control_builder->getDoneControl());
63 $this->assertEquals([], $this->control_builder->getControls());
64 $this->assertNull($this->control_builder->getToc());
◆ testLocator()
LSControlBuilderTest::testLocator |
( |
| ) |
|
Definition at line 182 of file LSControlBuilderTest.php.
184 $cb = $this->control_builder->locator(
'cmd');
185 $this->assertInstanceOf(LocatorBuilder::class, $cb);
◆ testMode()
LSControlBuilderTest::testMode |
( |
| ) |
|
Definition at line 175 of file LSControlBuilderTest.php.
177 $cb = $this->control_builder->mode(
'cmd', [
'm1',
'm2']);
178 $this->assertInstanceOf(ControlBuilder::class, $cb);
179 $this->assertInstanceOf(
ViewControl\Mode::class, $cb->getModeControls()[0]);
◆ testMultipleGeneric()
LSControlBuilderTest::testMultipleGeneric |
( |
| ) |
|
Definition at line 147 of file LSControlBuilderTest.php.
149 $cb = $this->control_builder
150 ->generic(
'label',
'cmd', 1)
151 ->generic(
'label',
'cmd', 2)
152 ->generic(
'label',
'cmd', 3);
153 $this->assertCount(3, $cb->getControls());
◆ testNavigationControls()
LSControlBuilderTest::testNavigationControls |
( |
| ) |
|
Definition at line 87 of file LSControlBuilderTest.php.
89 $cb = $this->control_builder
92 $this->assertInstanceOf(ControlBuilder::class, $cb);
93 $this->assertInstanceOf(
Button\Standard::class, $cb->getPreviousControl());
94 $this->assertInstanceOf(
Button\Standard::class, $cb->getNextControl());
◆ testToC()
LSControlBuilderTest::testToC |
( |
| ) |
|
Definition at line 121 of file LSControlBuilderTest.php.
123 $toc = $this->control_builder->tableOfContent(
'cmd',
'rootnode');
124 $this->assertInstanceOf(TOCBuilder::class, $toc);
125 $this->assertEquals($toc, $this->control_builder->getToc());
◆ testUniqueDone()
LSControlBuilderTest::testUniqueDone |
( |
| ) |
|
◆ testUniqueExit()
LSControlBuilderTest::testUniqueExit |
( |
| ) |
|
◆ testUniqueLocator()
LSControlBuilderTest::testUniqueLocator |
( |
| ) |
|
Definition at line 188 of file LSControlBuilderTest.php.
References Vendor\Package\$e.
191 $this->control_builder->locator(
'cmd')
193 $this->control_builder->locator(
'cmd');
194 $this->assertFalse(
"This should not happen");
196 $this->assertTrue(
true);
◆ testUniqueNext()
LSControlBuilderTest::testUniqueNext |
( |
| ) |
|
◆ testUniquePrevious()
LSControlBuilderTest::testUniquePrevious |
( |
| ) |
|
Definition at line 97 of file LSControlBuilderTest.php.
References Vendor\Package\$e.
100 $this->control_builder
102 ->previous(
'cmd', 1);
103 $this->assertFalse(
"This should not happen");
105 $this->assertTrue(
true);
◆ testUniqueToC()
LSControlBuilderTest::testUniqueToC |
( |
| ) |
|
Definition at line 128 of file LSControlBuilderTest.php.
References Vendor\Package\$e.
131 $this->control_builder->tableOfContent(
'cmd',
'rootnode')
133 $this->control_builder->tableOfContent(
'cmd',
'rootnode');
134 $this->assertFalse(
"This should not happen");
136 $this->assertTrue(
true);
◆ $control_builder
The documentation for this class was generated from the following file: