ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsGamificationTest.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ScoreReporting;
20 
23 
25 {
26  public function testConstruct(): void
27  {
28  $gamificationTest = new SettingsGamification(0);
29  $this->assertInstanceOf(SettingsGamification::class, $gamificationTest);
30  }
31 
35  public function testGetAndWithHighscoreEnabled(bool $IO): void
36  {
37  $gamificationTest = new SettingsGamification(0);
38  $gamificationTest = $gamificationTest->withHighscoreEnabled($IO);
39  $this->assertEquals($IO, $gamificationTest->getHighscoreEnabled());
40  }
41 
42  public static function getAndWithHighscoreEnabledDataProvider(): array
43  {
44  return [
45  [true],
46  [false]
47  ];
48  }
49 
53  public function testGetAndWithHighscoreOwnTable(bool $IO): void
54  {
55  $gamificationTest = new SettingsGamification(0);
56  $gamificationTest = $gamificationTest->withHighscoreOwnTable($IO);
57  $this->assertEquals($IO, $gamificationTest->getHighscoreOwnTable());
58  }
59 
60  public static function getAndWithHighscoreOwnTableDataProvider(): array
61  {
62  return [
63  [true],
64  [false]
65  ];
66  }
67 
71  public function testGetAndWithHighscoreTopTable(bool $IO): void
72  {
73  $gamificationTest = new SettingsGamification(0);
74  $gamificationTest = $gamificationTest->withHighscoreTopTable($IO);
75  $this->assertEquals($IO, $gamificationTest->getHighscoreTopTable());
76  }
77 
78  public static function getAndWithHighscoreTopTableDataProvider(): array
79  {
80  return [
81  [true],
82  [false]
83  ];
84  }
85 
89  public function testGetAndWithHighscoreTopNum(int $IO): void
90  {
91  $gamificationTest = new SettingsGamification(0);
92  $gamificationTest = $gamificationTest->withHighscoreTopNum($IO);
93  $this->assertEquals($IO, $gamificationTest->getHighscoreTopNum());
94  }
95 
96  public static function getAndWithHighscoreTopNumDataProvider(): array
97  {
98  return [
99  [-1],
100  [0],
101  [1]
102  ];
103  }
104 
108  public function testGetAndWithHighscoreAnon(bool $IO): void
109  {
110  $gamificationTest = new SettingsGamification(0);
111  $gamificationTest = $gamificationTest->withHighscoreAnon($IO);
112  $this->assertEquals($IO, $gamificationTest->getHighscoreAnon());
113  }
114 
115  public static function getAndWithHighscoreAnonDataProvider(): array
116  {
117  return [
118  [true],
119  [false],
120  ];
121  }
122 
126  public function testGetAndWithHighscoreAchievedTS(bool $IO): void
127  {
128  $gamificationTest = new SettingsGamification(0);
129  $gamificationTest = $gamificationTest->withHighscoreAchievedTS($IO);
130  $this->assertEquals($IO, $gamificationTest->getHighscoreAchievedTS());
131  }
132 
133  public static function getAndWithHighscoreAchievedTSDataProvider(): array
134  {
135  return [
136  [true],
137  [false]
138  ];
139  }
140 
144  public function testGetAndWithHighscoreScore(bool $IO): void
145  {
146  $gamificationTest = new SettingsGamification(0);
147  $gamificationTest = $gamificationTest->withHighscoreScore($IO);
148  $this->assertEquals($IO, $gamificationTest->getHighscoreScore());
149  }
150 
151  public static function getAndWithHighscoreScoreDataProvider(): array
152  {
153  return [
154  [true],
155  [false]
156  ];
157  }
158 
162  public function testGetAndWithHighscorePercentage(bool $IO): void
163  {
164  $gamificationTest = new SettingsGamification(0);
165  $gamificationTest = $gamificationTest->withHighscorePercentage($IO);
166  $this->assertEquals($IO, $gamificationTest->getHighscorePercentage());
167  }
168 
169  public static function getAndWithHighscorePercentageDataProvider(): array
170  {
171  return [
172  [true],
173  [false]
174  ];
175  }
176 
180  public function testGetAndWithHighscoreHints(bool $IO): void
181  {
182  $gamificationTest = new SettingsGamification(0);
183  $gamificationTest = $gamificationTest->withHighscoreHints($IO);
184  $this->assertEquals($IO, $gamificationTest->getHighscoreHints());
185  }
186 
187  public static function getAndWithHighscoreHintsDataProvider(): array
188  {
189  return [
190  [true],
191  [false]
192  ];
193  }
194 
198  public function testGetAndWithHighscoreWTime(bool $IO): void
199  {
200  $gamificationTest = new SettingsGamification(0);
201  $gamificationTest = $gamificationTest->withHighscoreWTime($IO);
202  $this->assertEquals($IO, $gamificationTest->getHighscoreWTime());
203  }
204 
205  public static function getAndWithHighscoreWTimeDataProvider(): array
206  {
207  return [
208  [true],
209  [false]
210  ];
211  }
212 }
testGetAndWithHighscoreTopNum(int $IO)
getAndWithHighscoreTopNumDataProvider
testGetAndWithHighscoreAnon(bool $IO)
getAndWithHighscoreAnonDataProvider
testGetAndWithHighscoreOwnTable(bool $IO)
getAndWithHighscoreOwnTableDataProvider
testGetAndWithHighscoreHints(bool $IO)
getAndWithHighscoreHintsDataProvider
testGetAndWithHighscorePercentage(bool $IO)
getAndWithHighscorePercentageDataProvider
testGetAndWithHighscoreEnabled(bool $IO)
getAndWithHighscoreEnabledDataProvider
testGetAndWithHighscoreWTime(bool $IO)
getAndWithHighscoreWTimeDataProvider
testGetAndWithHighscoreScore(bool $IO)
getAndWithHighscoreScoreDataProvider
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testGetAndWithHighscoreTopTable(bool $IO)
getAndWithHighscoreTopTableDataProvider
testGetAndWithHighscoreAchievedTS(bool $IO)
getAndWithHighscoreAchievedTSDataProvider