[HttpClient] skip tests implemented in 4.4

This commit is contained in:
Nicolas Grekas 2019-10-21 18:09:12 +02:00
parent 5ce78ccbe1
commit ae86ab18fa

View File

@ -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');
}
}