ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilTestQuestionPoolSelectorExplorerTest.php
Go to the documentation of this file.
1 <?php
2 
19 namespace Test\tests;
20 
26 
28 {
30 
31  protected function setUp(): void
32  {
33  parent::setUp();
34 
35  $this->addGlobal_ilSetting();
36  $this->addGlobal_ilAccess();
37  $this->addGlobal_ilLog();
38 
39  $this->testObj = new ilTestQuestionPoolSelectorExplorer(
40  $this->createMock(ilTestRandomQuestionSetConfigGUI::class),
41  '',
42  '',
43  $this->createMock(ilObjectDataCache::class)
44  );
45  }
46 
47  public function testConstruct(): void
48  {
49  $this->assertInstanceOf(ilRepositorySelectorExplorerGUI::class, $this->testObj);
50  }
51 
55  public function testGetAndSetAvailableQuestionPools(array $IO): void
56  {
57  $this->assertEquals([], $this->testObj->getAvailableQuestionPools());
58  $this->assertNull($this->testObj->setAvailableQuestionPools($IO));
59  $this->assertEquals($IO, $this->testObj->getAvailableQuestionPools());
60  }
61 
62  public static function getAndSetAvailableQuestionPoolsDataProvider(): array
63  {
64  return [
65  [[]],
66  [[1]],
67  [[1, 2]],
68  [[1, 2, 3]]
69  ];
70  }
71 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testGetAndSetAvailableQuestionPools(array $IO)
getAndSetAvailableQuestionPoolsDataProvider