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 ilTestPassOverviewTableGUITest
- Author
- Marvin Beym mbeym.nosp@m.@dat.nosp@m.abay..nosp@m.de
Definition at line 25 of file ilTestPassOverviewTableGUITest.php.
◆ setUp()
ilTestPassOverviewTableGUITest::setUp |
( |
| ) |
|
|
protected |
Definition at line 30 of file ilTestPassOverviewTableGUITest.php.
References ilTestBaseTestCase\setGlobalVariable().
34 $lng_mock = $this->createMock(ilLanguage::class);
35 $ctrl_mock = $this->createMock(ilCtrl::class);
36 $ctrl_mock->expects($this->any())
37 ->method(
"getFormAction")
38 ->willReturnCallback(
function () {
39 return "testFormAction";
45 $this->
setGlobalVariable(
"component.repository", $this->createMock(ilComponentRepository::class));
46 $component_factory = $this->createMock(ilComponentFactory::class);
47 $component_factory->method(
"getActivePluginsInSlot")->willReturn(
new ArrayIterator());
51 $this->parentObj_mock = $this->getMockBuilder(ilObjTestGUI::class)->disableOriginalConstructor()->onlyMethods(array(
'getObject'))->getMock();
52 $this->parentObj_mock->expects($this->any())->method(
'getObject')->willReturn($this->createMock(ilObjTest::class));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setGlobalVariable(string $name, $value)
◆ test_instantiateObject_shouldReturnInstance()
ilTestPassOverviewTableGUITest::test_instantiateObject_shouldReturnInstance |
( |
| ) |
|
◆ testActiveId()
ilTestPassOverviewTableGUITest::testActiveId |
( |
| ) |
|
◆ testNumericOrdering()
ilTestPassOverviewTableGUITest::testNumericOrdering |
( |
| ) |
|
Definition at line 61 of file ilTestPassOverviewTableGUITest.php.
63 $this->assertTrue($this->tableGui->numericOrdering(
"pass"));
64 $this->assertTrue($this->tableGui->numericOrdering(
"date"));
65 $this->assertTrue($this->tableGui->numericOrdering(
"percentage"));
66 $this->assertFalse($this->tableGui->numericOrdering(
"randomText"));
◆ testObjectiveOrientedPresentationEnabled()
ilTestPassOverviewTableGUITest::testObjectiveOrientedPresentationEnabled |
( |
| ) |
|
Definition at line 87 of file ilTestPassOverviewTableGUITest.php.
89 $this->assertIsBool($this->tableGui->isObjectiveOrientedPresentationEnabled());
90 $this->tableGui->setObjectiveOrientedPresentationEnabled(
false);
91 $this->assertFalse($this->tableGui->isObjectiveOrientedPresentationEnabled());
92 $this->tableGui->setObjectiveOrientedPresentationEnabled(
true);
93 $this->assertTrue($this->tableGui->isObjectiveOrientedPresentationEnabled());
◆ testPassDeletionCommand()
ilTestPassOverviewTableGUITest::testPassDeletionCommand |
( |
| ) |
|
Definition at line 109 of file ilTestPassOverviewTableGUITest.php.
111 $this->assertIsString($this->tableGui->getPassDeletionCommand());
112 $this->tableGui->setPassDeletionCommand(
"testString");
113 $this->assertEquals(
"testString", $this->tableGui->getPassDeletionCommand());
◆ testPassDetailsCommand()
ilTestPassOverviewTableGUITest::testPassDetailsCommand |
( |
| ) |
|
Definition at line 102 of file ilTestPassOverviewTableGUITest.php.
104 $this->assertIsString($this->tableGui->getPassDetailsCommand());
105 $this->tableGui->setPassDetailsCommand(
"testString");
106 $this->assertEquals(
"testString", $this->tableGui->getPassDetailsCommand());
◆ testPdfPresentationEnabled()
ilTestPassOverviewTableGUITest::testPdfPresentationEnabled |
( |
| ) |
|
Definition at line 78 of file ilTestPassOverviewTableGUITest.php.
80 $this->assertIsBool($this->tableGui->isPdfPresentationEnabled());
81 $this->tableGui->setPdfPresentationEnabled(
false);
82 $this->assertFalse($this->tableGui->isPdfPresentationEnabled());
83 $this->tableGui->setPdfPresentationEnabled(
true);
84 $this->assertTrue($this->tableGui->isPdfPresentationEnabled());
◆ testResultPresentationEnabled()
ilTestPassOverviewTableGUITest::testResultPresentationEnabled |
( |
| ) |
|
Definition at line 69 of file ilTestPassOverviewTableGUITest.php.
71 $this->assertIsBool($this->tableGui->isResultPresentationEnabled());
72 $this->tableGui->setResultPresentationEnabled(
false);
73 $this->assertFalse($this->tableGui->isResultPresentationEnabled());
74 $this->tableGui->setResultPresentationEnabled(
true);
75 $this->assertTrue($this->tableGui->isResultPresentationEnabled());
◆ $parentObj_mock
ilObjTestGUI ilTestPassOverviewTableGUITest::$parentObj_mock |
|
private |
◆ $tableGui
The documentation for this class was generated from the following file: