8000 minor #34052 [HttpClient] skip tests implemented in 4.4 (nicolas-grekas) · symfony/symfony@5da67f9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5da67f9

Browse files
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 ------- ae86ab1 [HttpClient] skip tests implemented in 4.4
2 parents 13e15e2 + ae86ab1 commit 5da67f9

File tree

1 file changed

+30
-5
lines changed

1 file changed

+30
-5
lines changed

src/Symfony/Component/HttpClient/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)
0