Skip to content

Commit 3c37c0b

Browse files
[HttpClient] skip tests implemented in 4.4
1 parent bbcbbbe commit 3c37c0b

File tree

1 file changed

+30
-5
lines changed

1 file changed

+30
-5
lines changed

Tests/HttpClientTestCase.php

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515

1616
abstract class HttpClientTestCase extends BaseHttpClientTestCase
1717
{
18-
public function testMaxDuration()
19-
{
20-
$this->markTestSkipped('Implemented as of version 4.4');
21-
}
22-
2318
public function testAcceptHeader()
2419
{
2520
$client = $this->getHttpClient(__FUNCTION__);
@@ -47,4 +42,34 @@ public function testAcceptHeader()
4742

4843
$this->assertArrayNotHasKey('HTTP_ACCEPT', $requestHeaders);
4944
}
45+
46+
public function testInfoOnCanceledResponse()
47+
{
48+
$this->markTestSkipped('Implemented as of version 4.4');
49+
}
50+
51+
public function testBufferSink()
52+
{
53+
$this->markTestSkipped('Implemented as of version 4.4');
54+
}
55+
56+
public function testConditionalBuffering()
57+
{
58+
$this->markTestSkipped('Implemented as of version 4.4');
59+
}
60+
61+
public function testReentrantBufferCallback()
62+
{
63+
$this->markTestSkipped('Implemented as of version 4.4');
64+
}
65+
66+
public function testThrowingBufferCallback()
67+
{
68+
$this->markTestSkipped('Implemented as of version 4.4');
69+
}
70+
71+
public function testMaxDuration()
72+
{
73+
$this->markTestSkipped('Implemented as of version 4.4');
74+
}
5075
}

0 commit comments

Comments
 (0)