ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsIntroductionTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
28  public function testGetAndWithIntroductionEnabled(bool $io): void
29  {
30  $settings_introduction = (new SettingsIntroduction(0))->withIntroductionEnabled($io);
31 
32  $this->assertInstanceOf(SettingsIntroduction::class, $settings_introduction);
33  $this->assertEquals($io, $settings_introduction->getIntroductionEnabled());
34  }
35 
36  public static function getAndWithIntroductionEnabledDataProvider(): array
37  {
38  return [
39  [true],
40  [false]
41  ];
42  }
43 
47  public function testGetAndWithIntroductionText(string $io): void
48  {
49  $settings_introduction = (new SettingsIntroduction(0))->withIntroductionText($io);
50 
51  $this->assertInstanceOf(SettingsIntroduction::class, $settings_introduction);
52  $this->assertEquals($io, $settings_introduction->getIntroductionText());
53  }
54 
55  public static function getAndWithIntroductionTextDataProvider(): array
56  {
57  return [
58  [''],
59  ['string']
60  ];
61  }
62 
66  public function testGetAndWithIntroductionPageId(?int $io): void
67  {
68  $settings_introduction = (new SettingsIntroduction(0))->withIntroductionPageId($io);
69 
70  $this->assertInstanceOf(SettingsIntroduction::class, $settings_introduction);
71  $this->assertEquals($io, $settings_introduction->getIntroductionPageId());
72  }
73 
74  public static function getAndWithIntroductionPageIdDataProvider(): array
75  {
76  return [
77  [null],
78  [-1],
79  [0],
80  [1]
81  ];
82  }
83 
87  public function testGetAndWithExamConditionsCheckboxEnabled(bool $io): void
88  {
89  $settings_introduction = (new SettingsIntroduction(0))->withExamConditionsCheckboxEnabled($io);
90 
91  $this->assertInstanceOf(SettingsIntroduction::class, $settings_introduction);
92  $this->assertEquals($io, $settings_introduction->getExamConditionsCheckboxEnabled());
93  }
94 
96  {
97  return [
98  [true],
99  [false]
100  ];
101  }
102 }
testGetAndWithIntroductionText(string $io)
getAndWithIntroductionTextDataProvider
testGetAndWithIntroductionEnabled(bool $io)
getAndWithIntroductionEnabledDataProvider
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getAndWithExamConditionsCheckboxEnabledDataProvider()
testGetAndWithIntroductionPageId(?int $io)
getAndWithIntroductionPageIdDataProvider
testGetAndWithExamConditionsCheckboxEnabled(bool $io)
getAndWithExamConditionsCheckboxEnabledDataProvider