Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function itThrowAnExceptionOnUnsupportedParameterLocation() |
||
10 | { |
||
11 | $this->expectException(\InvalidArgumentException::class); |
||
12 | $this->expectExceptionMessage( |
||
13 | 'nowhere is not a supported parameter location, ' . |
||
14 | 'supported: path, header, query, body, formData' |
||
15 | ); |
||
16 | |||
17 | $param = new Parameter('nowhere', 'foo'); |
||
|
|||
18 | } |
||
30 |