Total Complexity | 8 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class CurlIntegrationTest extends BaseIntegrationTest |
||
10 | { |
||
11 | protected function createHttpAdapter() |
||
12 | { |
||
13 | $client = new Curl(); |
||
14 | |||
15 | return $client; |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @dataProvider requestProvider |
||
20 | * @group integration |
||
21 | */ |
||
22 | public function testSendRequest($method, $uri, array $headers, $body) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @dataProvider requestWithOutcomeProvider |
||
35 | * @group integration |
||
36 | */ |
||
37 | public function testSendRequestWithOutcome($uriAndOutcome, $protocolVersion, array $headers, $body) |
||
46 |