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