From ae86ab18fa3fdb8237142641ae7003c4cfdecc08 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 21 Oct 2019 18:09:12 +0200 Subject: [PATCH] [HttpClient] skip tests implemented in 4.4 --- .../HttpClient/Tests/HttpClientTestCase.php | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) 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'); + } }