| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class CurlOnlyPostHttpClientTest extends TestCase |
||
| 9 | { |
||
| 10 | public function testCallInvokeShouldThrowException() |
||
| 11 | { |
||
| 12 | $this->expectException(\Exception::class); |
||
| 13 | |||
| 14 | $onlyPost = new CurlOnlyPostHttpClient(); |
||
| 15 | |||
| 16 | $onlyPost('', [], []); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function testCallInvokeSuccessfully() |
||
| 32 | } |
||
| 33 | } |
||
| 34 |