ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsQuestionBehaviourTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
26  {
27  return new SettingsQuestionBehaviour(
28  0,
29  0,
30  true,
31  0,
32  true,
33  true,
34  true,
35  true,
36  true,
37  true,
38  true,
39  true,
40  true,
41  true
42  );
43  }
44 
48  public function testGetAndWithQuestionTitleOutputMode(int $io): void
49  {
50  $Settings_question_behaviour = $this->getTestInstance()->withQuestionTitleOutputMode($io);
51 
52  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
53  $this->assertEquals($io, $Settings_question_behaviour->getQuestionTitleOutputMode());
54  }
55 
56  public static function getAndWithQuestionTitleOutputModeDataProvider(): array
57  {
58  return [
59  [-1],
60  [0],
61  [1]
62  ];
63  }
64 
68  public function testGetAndWithAutosaveEnabled(bool $io): void
69  {
70  $Settings_question_behaviour = $this->getTestInstance()->withAutosaveEnabled($io);
71 
72  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
73  $this->assertEquals($io, $Settings_question_behaviour->getAutosaveEnabled());
74  }
75 
76  public static function getAndWithInstantFeedbackDataProvider(): array
77  {
78  return [
79  [false],
80  [true]
81  ];
82  }
83 
87  public function testGetAndWithAutosaveInterval(int $io): void
88  {
89  $Settings_question_behaviour = $this->getTestInstance()->withAutosaveInterval($io);
90 
91  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
92  $this->assertEquals($io, $Settings_question_behaviour->getAutosaveInterval());
93  }
94 
95  public static function getAndWithAutosaveIntervalDataProvider(): array
96  {
97  return [
98  [-1],
99  [0],
100  [1]
101  ];
102  }
103 
107  public function testGetAndWithShuffleQuestions(bool $io): void
108  {
109  $Settings_question_behaviour = $this->getTestInstance()->withShuffleQuestions($io);
110 
111  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
112  $this->assertEquals($io, $Settings_question_behaviour->getShuffleQuestions());
113  }
114 
115  public static function getAndWithShuffleQuestionsDataProvider(): array
116  {
117  return [
118  [false],
119  [true]
120  ];
121  }
122 
126  public function testGetAndWithQuestionHintsEnabled(bool $io): void
127  {
128  $Settings_question_behaviour = $this->getTestInstance()->withQuestionHintsEnabled($io);
129 
130  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
131  $this->assertEquals($io, $Settings_question_behaviour->getQuestionHintsEnabled());
132  }
133 
134  public static function getAndWithQuestionHintsEnabledDataProvider(): array
135  {
136  return [
137  [false],
138  [true]
139  ];
140  }
141 
145  public function testGetAndWithInstantFeedbackPointsEnabled(bool $io): void
146  {
147  $Settings_question_behaviour = $this->getTestInstance()->withInstantFeedbackPointsEnabled($io);
148 
149  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
150  $this->assertEquals($io, $Settings_question_behaviour->getInstantFeedbackPointsEnabled());
151  }
152 
154  {
155  return [
156  [false],
157  [true]
158  ];
159  }
160 
164  public function testGetAndWithInstantFeedbackGenericEnabled(bool $io): void
165  {
166  $Settings_question_behaviour = $this->getTestInstance()->withInstantFeedbackGenericEnabled($io);
167 
168  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
169  $this->assertEquals($io, $Settings_question_behaviour->getInstantFeedbackGenericEnabled());
170  }
171 
173  {
174  return [
175  [false],
176  [true]
177  ];
178  }
179 
183  public function testGetAndWithInstantFeedbackSpecificEnabled(bool $io): void
184  {
185  $Settings_question_behaviour = $this->getTestInstance()->withInstantFeedbackSpecificEnabled($io);
186 
187  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
188  $this->assertEquals($io, $Settings_question_behaviour->getInstantFeedbackSpecificEnabled());
189  }
190 
192  {
193  return [
194  [false],
195  [true]
196  ];
197  }
198 
202  public function testGetAndWithInstantFeedbackSolutionEnabled(bool $io): void
203  {
204  $Settings_question_behaviour = $this->getTestInstance()->withInstantFeedbackSolutionEnabled($io);
205 
206  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
207  $this->assertEquals($io, $Settings_question_behaviour->getInstantFeedbackSolutionEnabled());
208  }
209 
211  {
212  return [
213  [false],
214  [true]
215  ];
216  }
217 
221  public function testGetAndWithForceInstantFeedbackOnNextQuestion(bool $io): void
222  {
223  $Settings_question_behaviour = $this->getTestInstance()->withForceInstantFeedbackOnNextQuestion($io);
224 
225  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
226  $this->assertEquals($io, $Settings_question_behaviour->getForceInstantFeedbackOnNextQuestion());
227  }
228 
230  {
231  return [
232  [false],
233  [true]
234  ];
235  }
236 
240  public function testGetAndWithLockAnswerOnInstantFeedbackEnabled(bool $io): void
241  {
242  $Settings_question_behaviour = $this->getTestInstance()->withLockAnswerOnInstantFeedbackEnabled($io);
243 
244  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
245  $this->assertEquals($io, $Settings_question_behaviour->getLockAnswerOnInstantFeedbackEnabled());
246  }
247 
249  {
250  return [
251  [false],
252  [true]
253  ];
254  }
255 
259  public function testGetAndWithLockAnswerOnNextQuestionEnabled(bool $io): void
260  {
261  $Settings_question_behaviour = $this->getTestInstance()->withLockAnswerOnNextQuestionEnabled($io);
262 
263  $this->assertInstanceOf(SettingsQuestionBehaviour::class, $Settings_question_behaviour);
264  $this->assertEquals($io, $Settings_question_behaviour->getLockAnswerOnNextQuestionEnabled());
265  }
266 
268  {
269  return [
270  [false],
271  [true]
272  ];
273  }
274 }
testGetAndWithLockAnswerOnInstantFeedbackEnabled(bool $io)
getAndWithLockAnswerOnInstantFeedbackEnabledDataProvider
testGetAndWithInstantFeedbackGenericEnabled(bool $io)
getAndWithInstantFeedbackGenericEnabledDataProvider
testGetAndWithLockAnswerOnNextQuestionEnabled(bool $io)
getAndWithLockAnswerOnNextQuestionEnabledDataProvider
testGetAndWithAutosaveEnabled(bool $io)
getAndWithInstantFeedbackDataProvider
testGetAndWithInstantFeedbackSolutionEnabled(bool $io)
getAndWithInstantFeedbackSolutionEnabledDataProvider
testGetAndWithForceInstantFeedbackOnNextQuestion(bool $io)
getAndWithForceInstantFeedbackOnNextQuestionDataProvider
testGetAndWithQuestionHintsEnabled(bool $io)
getAndWithQuestionHintsEnabledDataProvider
testGetAndWithShuffleQuestions(bool $io)
getAndWithShuffleQuestionsDataProvider
testGetAndWithInstantFeedbackSpecificEnabled(bool $io)
getAndWithInstantFeedbackSpecificEnabledDataProvider
testGetAndWithQuestionTitleOutputMode(int $io)
getAndWithQuestionTitleOutputModeDataProvider
testGetAndWithInstantFeedbackPointsEnabled(bool $io)
getAndWithInstantFeedbackPointsEnabledDataProvider
testGetAndWithAutosaveInterval(int $io)
getAndWithAutosaveIntervalDataProvider