Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function test_it_validates_the_prefix( |
||
18 | string $prefix, |
||
19 | string $expectedExceptionMessage |
||
20 | ): void |
||
21 | { |
||
22 | $this->expectException(InvalidArgumentException::class); |
||
23 | $this->expectExceptionMessage($expectedExceptionMessage); |
||
24 | |||
25 | new Configuration( |
||
26 | null, |
||
27 | $prefix, |
||
28 | [], |
||
29 | [], |
||
30 | Whitelist::create( |
||
31 | false, |
||
32 | false, |
||
33 | false, |
||
34 | ), |
||
35 | [], |
||
36 | ); |
||
52 |