| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function forwards_params_as_http_body() |
||
| 12 | { |
||
| 13 | $container = []; |
||
| 14 | $client = $this->mockAPIRequest($container); |
||
| 15 | $send = new Send($client); |
||
| 16 | |||
| 17 | $params = ['any-parameter' => 'any-parameter-value']; |
||
| 18 | $send->handle($params); |
||
| 19 | |||
| 20 | $this->assertAPIRequestBodyHas($params, $container); |
||
| 21 | } |
||
| 43 |