ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsGeneralTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
28  public function testGetAndWithQuestionSetType(string $io): void
29  {
30  $Settings_general = (new SettingsGeneral(0))->withQuestionSetType($io);
31 
32  $this->assertInstanceOf(SettingsGeneral::class, $Settings_general);
33  $this->assertEquals($io, $Settings_general->getQuestionSetType());
34  }
35 
36  public static function getAndWithQuestionSetTypeDataProvider(): array
37  {
38  return [
41  ];
42  }
43 
47  public function testGetAndWithAnonymity(bool $io): void
48  {
49  $Settings_general = (new SettingsGeneral(0))->withAnonymity($io);
50 
51  $this->assertInstanceOf(SettingsGeneral::class, $Settings_general);
52  $this->assertEquals($io, $Settings_general->getAnonymity());
53  }
54 
55  public static function getAndWithAnonymityDataProvider(): array
56  {
57  return [
58  [true],
59  [false]
60  ];
61  }
62 }
const QUESTION_SET_TYPE_RANDOM
static getAndWithQuestionSetTypeDataProvider()
testGetAndWithQuestionSetType(string $io)
getAndWithQuestionSetTypeDataProvider
testGetAndWithAnonymity(bool $io)
getAndWithAnonymityDataProvider
static getAndWithAnonymityDataProvider()
const QUESTION_SET_TYPE_FIXED