diff --git a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php index bc836a7fad..2acf01fd0a 100644 --- a/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php +++ b/src/Symfony/Component/HttpClient/Tests/HttpClientTestCase.php @@ -15,11 +15,6 @@ use Symfony\Contracts\HttpClient\Test\HttpClientTestCase as BaseHttpClientTestCa abstract class HttpClientTestCase extends BaseHttpClientTestCase { - public function testMaxDuration() - { - $this->markTestSkipped('Implemented as of version 4.4'); - } - public function testAcceptHeader() { $client = $this->getHttpClient(__FUNCTION__); @@ -47,4 +42,34 @@ abstract class HttpClientTestCase extends BaseHttpClientTestCase $this->assertArrayNotHasKey('HTTP_ACCEPT', $requestHeaders); } + + public function testInfoOnCanceledResponse() + { + $this->markTestSkipped('Implemented as of version 4.4'); + } + + public function testBufferSink() + { + $this->markTestSkipped('Implemented as of version 4.4'); + } + + public function testConditionalBuffering() + { + $this->markTestSkipped('Implemented as of version 4.4'); + } + + public function testReentrantBufferCallback() + { + $this->markTestSkipped('Implemented as of version 4.4'); + } + + public function testThrowingBufferCallback() + { + $this->markTestSkipped('Implemented as of version 4.4'); + } + + public function testMaxDuration() + { + $this->markTestSkipped('Implemented as of version 4.4'); + } }