Total Complexity | 1 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | new class extends TestCase { |
||
31 | |||
32 | /** |
||
33 | * Tell the TestCase what the |
||
34 | * min reachable score is. |
||
35 | * |
||
36 | * @var int |
||
37 | */ |
||
38 | protected int $minscore = 0; |
||
39 | |||
40 | /** |
||
41 | * Tell the TestCase what the |
||
42 | * max reachable score is. |
||
43 | * |
||
44 | * @var int |
||
45 | */ |
||
46 | protected int $maxscore = 10; |
||
47 | |||
48 | /** |
||
49 | * Run the test. |
||
50 | * |
||
51 | * @param ContainerInterface $container The storage container for the TestSuite. |
||
52 | * |
||
53 | * @return bool |
||
54 | */ |
||
55 | public function run(ContainerInterface $container) |
||
67 |