19 declare(strict_types=1);
29 protected function setUp(): void
32 $ctrl_mock = $this->createMock(ilCtrl::class);
33 $lng_mock = $this->createMock(ilLanguage::class);
35 ->expects($this->any())
37 ->willReturnCallback([self::class,
'lngTxtCallback'])
40 $this->setGlobalVariable(
'lng', $lng_mock);
41 $this->setGlobalVariable(
'ilCtrl', $ctrl_mock);
43 $questionSetConfigGui_mock = $this->createMock(ilTestRandomQuestionSetConfigGUI::class);
46 $questionSetConfigGui_mock,
47 $this->createMock(ilTestRandomQuestionSetConfig::class)
53 $this->assertInstanceOf(ilTestRandomQuestionSetGeneralConfigFormGUI::class, $this->formGui);
60 $this->formGui->setEditModeEnabled($expected);
62 $this->assertEquals($expected, $this->formGui->isEditModeEnabled());
67 return match (func_get_args()[0]) {
68 'tst_rnd_quest_set_cfg_general_form' =>
'testTitle',
69 default =>
'testValue'