Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function testInvalidVersionsAreRejected() : void |
||
39 | { |
||
40 | $this->expectException(OutOfBoundsException::class); |
||
41 | |||
42 | /** |
||
43 | * @psalm-suppress ArgumentTypeCoercion we are explicitly testing for something not allowed by the type system |
||
44 | */ |
||
45 | Versions::getVersion(uniqid('', true) . '/' . uniqid('', true)); |
||
46 | } |
||
48 |