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 ilTestDashboardGUITest
- Author
- Marvin Beym mbeym.nosp@m.@dat.nosp@m.abay..nosp@m.de
Definition at line 25 of file ilTestDashboardGUITest.php.
◆ setUp()
ilTestDashboardGUITest::setUp |
( |
| ) |
|
|
protected |
Definition at line 29 of file ilTestDashboardGUITest.php.
34 $this->createMock(ilObjTest::class),
35 $this->createMock(ilTestQuestionSetConfig::class)
◆ test_instantiateObject_shouldReturnInstance()
ilTestDashboardGUITest::test_instantiateObject_shouldReturnInstance |
( |
| ) |
|
◆ testObjectiveParent()
ilTestDashboardGUITest::testObjectiveParent |
( |
| ) |
|
Definition at line 72 of file ilTestDashboardGUITest.php.
74 $objectiveParent_mock = $this->createMock(ilTestObjectiveOrientedContainer::class);
75 $this->testObj->setObjectiveParent($objectiveParent_mock);
76 $this->assertEquals($objectiveParent_mock, $this->testObj->getObjectiveParent());
◆ testQuestionSetConfig()
ilTestDashboardGUITest::testQuestionSetConfig |
( |
| ) |
|
Definition at line 51 of file ilTestDashboardGUITest.php.
53 $testQuestionSetConfig_mock = $this->createMock(ilTestQuestionSetConfig::class);
54 $this->testObj->setQuestionSetConfig($testQuestionSetConfig_mock);
55 $this->assertEquals($testQuestionSetConfig_mock, $this->testObj->getQuestionSetConfig());
◆ testTestAccess()
ilTestDashboardGUITest::testTestAccess |
( |
| ) |
|
Definition at line 58 of file ilTestDashboardGUITest.php.
60 $testAccess_mock = $this->createMock(ilTestAccess::class);
61 $this->testObj->setTestAccess($testAccess_mock);
62 $this->assertEquals($testAccess_mock, $this->testObj->getTestAccess());
◆ testTestObj()
ilTestDashboardGUITest::testTestObj |
( |
| ) |
|
Definition at line 44 of file ilTestDashboardGUITest.php.
46 $objTest_mock = $this->createMock(ilObjTest::class);
47 $this->testObj->setTestObj($objTest_mock);
48 $this->assertEquals($objTest_mock, $this->testObj->getTestObj());
◆ testTestTabs()
ilTestDashboardGUITest::testTestTabs |
( |
| ) |
|
Definition at line 65 of file ilTestDashboardGUITest.php.
67 $testTabsManager_mock = $this->createMock(ilTestTabsManager::class);
68 $this->testObj->setTestTabs($testTabsManager_mock);
69 $this->assertEquals($testTabsManager_mock, $this->testObj->getTestTabs());
◆ $testObj
The documentation for this class was generated from the following file: