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 ilTestResultsGUITest
- Author
- Marvin Beym mbeym.nosp@m.@dat.nosp@m.abay..nosp@m.de
Definition at line 25 of file ilTestResultsGUITest.php.
◆ setUp()
ilTestResultsGUITest::setUp |
( |
| ) |
|
|
protected |
◆ tearDown()
ilTestResultsGUITest::tearDown |
( |
| ) |
|
|
protected |
◆ test_instantiateObject_shouldReturnInstance()
ilTestResultsGUITest::test_instantiateObject_shouldReturnInstance |
( |
| ) |
|
◆ testObjectiveParent()
ilTestResultsGUITest::testObjectiveParent |
( |
| ) |
|
Definition at line 62 of file ilTestResultsGUITest.php.
64 $mock = $this->createMock(ilTestObjectiveOrientedContainer::class);
65 $this->testObj->setObjectiveParent($mock);
66 $this->assertEquals($mock, $this->testObj->getObjectiveParent());
◆ testQuestionSetConfig()
ilTestResultsGUITest::testQuestionSetConfig |
( |
| ) |
|
Definition at line 76 of file ilTestResultsGUITest.php.
78 $mock = $this->createMock(ilTestQuestionSetConfig::class);
79 $this->testObj->setQuestionSetConfig($mock);
80 $this->assertEquals($mock, $this->testObj->getQuestionSetConfig());
◆ testTestAccess()
ilTestResultsGUITest::testTestAccess |
( |
| ) |
|
Definition at line 83 of file ilTestResultsGUITest.php.
85 $mock = $this->createMock(ilTestAccess::class);
86 $this->testObj->setTestAccess($mock);
87 $this->assertEquals($mock, $this->testObj->getTestAccess());
◆ testTestObj()
ilTestResultsGUITest::testTestObj |
( |
| ) |
|
Definition at line 69 of file ilTestResultsGUITest.php.
71 $mock = $this->createMock(ilObjTest::class);
72 $this->testObj->setTestObj($mock);
73 $this->assertEquals($mock, $this->testObj->getTestObj());
◆ testTestSession()
ilTestResultsGUITest::testTestSession |
( |
| ) |
|
Definition at line 90 of file ilTestResultsGUITest.php.
92 $mock = $this->createMock(ilTestSession::class);
93 $this->testObj->setTestSession($mock);
94 $this->assertEquals($mock, $this->testObj->getTestSession());
◆ testTestTabs()
ilTestResultsGUITest::testTestTabs |
( |
| ) |
|
Definition at line 97 of file ilTestResultsGUITest.php.
99 $mock = $this->createMock(ilTestTabsManager::class);
100 $this->testObj->setTestTabs($mock);
101 $this->assertEquals($mock, $this->testObj->getTestTabs());
◆ $backup_dic
ilTestResultsGUITest::$backup_dic |
|
private |
◆ $testObj
The documentation for this class was generated from the following file: