/**
  * @dataProvider requestWithOutcomeProvider
  * @group        integration
  */
 public function testSendRequestWithOutcome($uriAndOutcome, $protocolVersion, array $headers, $body)
 {
     if (null !== $body) {
         static::markTestSkipped('cURL can not send body using GET');
         return;
     }
     parent::testSendRequestWithOutcome($uriAndOutcome, $protocolVersion, $headers, $body);
 }
Example #2
0
 /**
  * @dataProvider requestWithOutcomeProvider
  * @group        integration
  */
 public function testSendRequestWithOutcome($uriAndOutcome, $protocolVersion, array $headers, $body)
 {
     parent::testSendRequestWithOutcome($uriAndOutcome, $protocolVersion, $headers, $body);
 }