| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function forwards_params_as_http_body() |
||
| 12 | { |
||
| 13 | $container = []; |
||
| 14 | $client = $this->mockElasticEmailAPIRequest($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 | } |
||
| 22 | |||
| 39 |