minor #34052 [HttpClient] skip tests implemented in 4.4 (nicolas-grekas)

This PR was merged into the 4.3 branch.

Discussion
----------

[HttpClient] skip tests implemented in 4.4

| Q             | A
| ------------- | ---
| Branch?       | 4.3
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

Needed after #34051 and #34044

Commits
-------

ae86ab18fa [HttpClient] skip tests implemented in 4.4
This commit is contained in:
Nicolas Grekas 2019-10-22 08:53:15 +02:00
commit 5da67f9126

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