This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
More...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.
If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Class ilTestQuestionSideListGUITest
- Author
- Marvin Beym mbeym.nosp@m.@dat.nosp@m.abay..nosp@m.de
Definition at line 25 of file ilTestQuestionSideListGUITest.php.
◆ setUp()
ilTestQuestionSideListGUITest::setUp |
( |
| ) |
|
|
protected |
◆ test_instantiateObject_shouldReturnInstance()
ilTestQuestionSideListGUITest::test_instantiateObject_shouldReturnInstance |
( |
| ) |
|
◆ testCurrentPresentationMode()
ilTestQuestionSideListGUITest::testCurrentPresentationMode |
( |
| ) |
|
Definition at line 66 of file ilTestQuestionSideListGUITest.php.
68 $this->testObj->setCurrentPresentationMode(
"test");
69 $this->assertEquals(
"test", $this->testObj->getCurrentPresentationMode());
◆ testCurrentSequenceElement()
ilTestQuestionSideListGUITest::testCurrentSequenceElement |
( |
| ) |
|
Definition at line 60 of file ilTestQuestionSideListGUITest.php.
62 $this->testObj->setCurrentSequenceElement(125);
63 $this->assertEquals(125, $this->testObj->getCurrentSequenceElement());
◆ testDisabled()
ilTestQuestionSideListGUITest::testDisabled |
( |
| ) |
|
Definition at line 72 of file ilTestQuestionSideListGUITest.php.
74 $this->testObj->setDisabled(
false);
75 $this->assertFalse($this->testObj->isDisabled());
77 $this->testObj->setDisabled(
true);
78 $this->assertTrue($this->testObj->isDisabled());
◆ testQuestionSummaryData()
ilTestQuestionSideListGUITest::testQuestionSummaryData |
( |
| ) |
|
Definition at line 51 of file ilTestQuestionSideListGUITest.php.
56 $this->testObj->setQuestionSummaryData($expected);
57 $this->assertEquals($expected, $this->testObj->getQuestionSummaryData());
◆ testTargetGUI()
ilTestQuestionSideListGUITest::testTargetGUI |
( |
| ) |
|
Definition at line 44 of file ilTestQuestionSideListGUITest.php.
46 $targetGui_mock = $this->createMock(ilTestPlayerAbstractGUI::class);
47 $this->testObj->setTargetGUI($targetGui_mock);
48 $this->assertEquals($targetGui_mock, $this->testObj->getTargetGUI());
◆ $testObj
The documentation for this class was generated from the following file: