ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilTestServiceGUITest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
28 
29  protected function setUp(): void
30  {
31  parent::setUp();
32 
33  $this->addGlobal_ilTabs();
34  $this->addGlobal_ilObjDataCache();
35  $this->addGlobal_ilHelp();
36  $this->addGlobal_rbacsystem();
37  $this->addGlobal_ilSetting();
38  $this->addGlobal_ilToolbar();
39  $this->addGlobal_GlobalScreenService();
40  $this->addGlobal_ilNavigationHistory();
41 
42  $this->testObj = new ilTestServiceGUI($this->getTestObjMock());
43  }
44 
46  {
47  $this->assertInstanceOf(ilTestServiceGUI::class, $this->testObj);
48  }
49 
50  public function testContextResultPresentation(): void
51  {
52  $this->testObj->setContextResultPresentation(false);
53  $this->assertFalse($this->testObj->isContextResultPresentation());
54 
55  $this->testObj->setContextResultPresentation(true);
56  $this->assertTrue($this->testObj->isContextResultPresentation());
57  }
58 
59  public function testParticipantData(): void
60  {
61  $mock = $this->createMock(ilTestParticipantData::class);
62  $this->testObj->setParticipantData($mock);
63  $this->assertEquals($mock, $this->testObj->getParticipantData());
64  }
65 
66  public function testObjectiveOrientedContainer(): void
67  {
68  $mock = $this->createMock(ilTestObjectiveOrientedContainer::class);
69  $this->testObj->setObjectiveOrientedContainer($mock);
70  $this->assertEquals($mock, $this->testObj->getObjectiveOrientedContainer());
71  }
72 
76  public function testBuildFixedShufflerSeed(int $question_id, int $pass_id, int $active_id, int $return): void
77  {
78  $reflection = new ReflectionClass(ilTestShuffler::class);
79  $method = $reflection->getMethod('buildFixedShufflerSeed');
80  $ilTestShuffler = new ilTestShuffler($this->createMock(ILIAS\Refinery\Factory::class));
81 
82  $this->assertEquals($return, $method->invoke($ilTestShuffler, $question_id, $pass_id, $active_id));
83  }
84 
85  public static function buildFixedShufflerSeedDataProvider(): array
86  {
87  return [
88  [
89  'question_id' => 1,
90  'pass_id' => 1,
91  'active_id' => 1,
92  'return' => 10000004
93  ],
94  [
95  'question_id' => 9999999,
96  'pass_id' => 1,
97  'active_id' => 1,
98  'return' => 10000000
99  ],
100  [
101  'question_id' => 234342342342342334,
102  'pass_id' => 11,
103  'active_id' => 1634545234234232344,
104  'return' => 1634545234234232355
105  ],
106  [
107  'question_id' => 23434234,
108  'pass_id' => 11,
109  'active_id' => 9223372036854775804,
110  'return' => 9223372036854775804
111  ]
112  ];
113  }
114 }
Interface Observer Contains several chained tasks and infos about them.
Class ilTestServiceGUITest.
static buildFixedShufflerSeedDataProvider()
Service GUI class for tests.
testBuildFixedShufflerSeed(int $question_id, int $pass_id, int $active_id, int $return)
buildFixedShufflerSeedDataProvider