Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function testMessage(): void |
||
12 | { |
||
13 | $reflection = new \ReflectionFunction('\\array_map'); |
||
14 | $exception = $this->createException($reflection, 'someParameter'); |
||
15 | |||
16 | $this->assertSame( |
||
17 | 'Missing required argument "someParameter" when calling "array_map".', |
||
18 | $exception->getMessage() |
||
19 | ); |
||
22 |