Class ilParticipantsTestResultsGUITest.
More...
◆ setUp()
| ilParticipantsTestResultsGUITest::setUp |
( |
| ) |
|
|
protected |
Definition at line 29 of file ilParticipantsTestResultsGUITest.php.
References $DIC, ilTestBaseTestCase\addGlobal_http(), ilTestBaseTestCase\addGlobal_ilCtrl(), ilTestBaseTestCase\addGlobal_ilDB(), ilTestBaseTestCase\addGlobal_ilLoggerFactory(), ilTestBaseTestCase\addGlobal_ilTabs(), ilTestBaseTestCase\addGlobal_ilToolbar(), ilTestBaseTestCase\addGlobal_ilUser(), ilTestBaseTestCase\addGlobal_lng(), ilTestBaseTestCase\addGlobal_refinery(), ilTestBaseTestCase\addGlobal_tpl(), ilTestBaseTestCase\addGlobal_uiFactory(), and ilTestBaseTestCase\addGlobal_uiRenderer().
58 $this->createMock(ilTestParticipantAccessFilterFactory::class),
59 $this->createMock(
ILIAS\
Test\InternalRequestService::class),
addGlobal_ilLoggerFactory()
ilParticipantsTestResultsGUI: ilTestEvaluationGUI ilParticipantsTestResultsGUI: ilAssQuestionPageGUI...
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ test_instantiateObject_shouldReturnInstance()
| ilParticipantsTestResultsGUITest::test_instantiateObject_shouldReturnInstance |
( |
| ) |
|
◆ testObjectiveParent()
| ilParticipantsTestResultsGUITest::testObjectiveParent |
( |
| ) |
|
Definition at line 100 of file ilParticipantsTestResultsGUITest.php.
102 $objectiveParent_mock = $this->createMock(ilTestObjectiveOrientedContainer::class);
104 $this->assertNull($this->testObj->getObjectiveParent());
106 $this->testObj->setObjectiveParent($objectiveParent_mock);
107 $this->assertEquals($objectiveParent_mock, $this->testObj->getObjectiveParent());
◆ testQuestionSetConfig()
| ilParticipantsTestResultsGUITest::testQuestionSetConfig |
( |
| ) |
|
Definition at line 80 of file ilParticipantsTestResultsGUITest.php.
82 $testQuestionSetConfig_mock = $this->createMock(ilTestQuestionSetConfig::class);
84 $this->assertNull($this->testObj->getQuestionSetConfig());
86 $this->testObj->setQuestionSetConfig($testQuestionSetConfig_mock);
87 $this->assertEquals($testQuestionSetConfig_mock, $this->testObj->getQuestionSetConfig());
◆ testTestAccess()
| ilParticipantsTestResultsGUITest::testTestAccess |
( |
| ) |
|
Definition at line 90 of file ilParticipantsTestResultsGUITest.php.
92 $testAccess_mock = $this->createMock(ilTestAccess::class);
94 $this->assertNull($this->testObj->getTestAccess());
96 $this->testObj->setTestAccess($testAccess_mock);
97 $this->assertEquals($testAccess_mock, $this->testObj->getTestAccess());
◆ testTestObj()
| ilParticipantsTestResultsGUITest::testTestObj |
( |
| ) |
|
Definition at line 70 of file ilParticipantsTestResultsGUITest.php.
72 $objTest_mock = $this->createMock(ilObjTest::class);
74 $this->assertNull($this->testObj->getTestObj());
76 $this->testObj->setTestObj($objTest_mock);
77 $this->assertEquals($objTest_mock, $this->testObj->getTestObj());
◆ $testObj
The documentation for this class was generated from the following file: