3declare(strict_types=1);
 
   30    protected function setUp(): void
 
   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));
 
   55            $this->parentObj_mock,
 
   62        $this->assertInstanceOf(ilTestPassDetailsOverviewTableGUI::class, $this->tableGui);
 
   67        $this->assertIsBool($this->tableGui->isPdfGenerationRequest());
 
   68        $this->tableGui->setIsPdfGenerationRequest(
false);
 
   69        $this->assertFalse($this->tableGui->isPdfGenerationRequest());
 
   70        $this->tableGui->setIsPdfGenerationRequest(
true);
 
   71        $this->assertTrue($this->tableGui->isPdfGenerationRequest());
 
   76        $this->tableGui->setSingleAnswerScreenCmd(
"testString");
 
   77        $this->assertEquals(
"testString", $this->tableGui->getSingleAnswerScreenCmd());
 
   82        $this->assertIsBool($this->tableGui->getAnswerListAnchorEnabled());
 
   83        $this->tableGui->setAnswerListAnchorEnabled(
false);
 
   84        $this->assertFalse($this->tableGui->getAnswerListAnchorEnabled());
 
   85        $this->tableGui->setAnswerListAnchorEnabled(
true);
 
   86        $this->assertTrue($this->tableGui->getAnswerListAnchorEnabled());
 
   91        $this->assertIsBool($this->tableGui->getShowHintCount());
 
   92        $this->tableGui->setShowHintCount(
false);
 
   93        $this->assertFalse($this->tableGui->getShowHintCount());
 
   94        $this->tableGui->setShowHintCount(
true);
 
   95        $this->assertTrue($this->tableGui->getShowHintCount());
 
  100        $this->assertIsBool($this->tableGui->getShowSuggestedSolution());
 
  101        $this->tableGui->setShowSuggestedSolution(
false);
 
  102        $this->assertFalse($this->tableGui->getShowSuggestedSolution());
 
  103        $this->tableGui->setShowSuggestedSolution(
true);
 
  104        $this->assertTrue($this->tableGui->getShowSuggestedSolution());
 
  109        $this->tableGui->setActiveId(200);
 
  110        $this->assertEquals(200, $this->tableGui->getActiveId());
 
  115        $this->assertIsBool($this->tableGui->isObjectiveOrientedPresentationEnabled());
 
  116        $this->tableGui->setObjectiveOrientedPresentationEnabled(
false);
 
  117        $this->assertFalse($this->tableGui->isObjectiveOrientedPresentationEnabled());
 
  118        $this->tableGui->setObjectiveOrientedPresentationEnabled(
true);
 
  119        $this->assertTrue($this->tableGui->isObjectiveOrientedPresentationEnabled());
 
  124        $this->assertIsBool($this->tableGui->areMultipleObjectivesInvolved());
 
  125        $this->tableGui->setMultipleObjectivesInvolved(
false);
 
  126        $this->assertFalse($this->tableGui->areMultipleObjectivesInvolved());
 
  127        $this->tableGui->setMultipleObjectivesInvolved(
true);
 
  128        $this->assertTrue($this->tableGui->areMultipleObjectivesInvolved());
 
  133        $this->assertIsBool($this->tableGui->isPassColumnEnabled());
 
  134        $this->tableGui->setPassColumnEnabled(
false);
 
  135        $this->assertFalse($this->tableGui->isPassColumnEnabled());
 
  136        $this->tableGui->setPassColumnEnabled(
true);
 
  137        $this->assertTrue($this->tableGui->isPassColumnEnabled());
 
setGlobalVariable(string $name, $value)
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
 
testMultipleObjectivesInvolved()
 
ilObjTestGUI $parentObj_mock
 
testAnswerListAnchorEnabled()
 
testSingleAnswerScreenCmd()
 
ilTestPassDetailsOverviewTableGUI $tableGui
 
testShowSuggestedSolution()
 
test_instantiateObject_shouldReturnInstance()
 
testPdfGenerationRequest()
 
testObjectiveOrientedPresentationEnabled()