Skip to content

Commit be5a53b

Browse files
committed
Merge branch '4.3' into 4.4
2 parents 1b462e3 + 3c37c0b commit be5a53b

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
@@ -16,11 +16,6 @@
1616

1717
abstract class HttpClientTestCase extends BaseHttpClientTestCase
1818
{
19-
public function testMaxDuration()
20-
{
21-
$this->markTestSkipped('Implemented as of version 4.4');
22-
}
23-
2419
public function testAcceptHeader()
2520
{
2621
$client = $this->getHttpClient(__FUNCTION__);
@@ -80,4 +75,34 @@ public function testToStream404()
8075
$response = $client->request('GET', 'http://localhost:8057/404');
8176
$stream = $response->toStream();
8277
}
78+
79+
public function testInfoOnCanceledResponse()
80+
{
81+
$this->markTestSkipped('Implemented as of version 4.4');
82+
}
83+
84+
public function testBufferSink()
85+
{
86+
$this->markTestSkipped('Implemented as of version 4.4');
87+
}
88+
89+
public function testConditionalBuffering()
90+
{
91+
$this->markTestSkipped('Implemented as of version 4.4');
92+
}
93+
94+
public function testReentrantBufferCallback()
95+
{
96+
$this->markTestSkipped('Implemented as of version 4.4');
97+
}
98+
99+
public function testThrowingBufferCallback()
100+
{
101+
$this->markTestSkipped('Implemented as of version 4.4');
102+
}
103+
104+
public function testMaxDuration()
105+
{
106+
$this->markTestSkipped('Implemented as of version 4.4');
107+
}
83108
}

0 commit comments

Comments
 (0)