forked from code-tool/socket-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocketClientFeatureTest.php
More file actions
40 lines (32 loc) · 902 Bytes
/
SocketClientFeatureTest.php
File metadata and controls
40 lines (32 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
namespace Http\Client\Socket\Tests;
use Http\Client\Socket\Client as SocketHttpClient;
use Http\Client\Tests\HttpFeatureTest;
use Psr\Http\Client\ClientInterface;
class SocketClientFeatureTest extends HttpFeatureTest
{
protected function createClient(): ClientInterface
{
return new SocketHttpClient();
}
public function testAutoSetContentLength(): void
{
$this->markTestSkipped('Feature is unsupported');
}
public function testGzip(): void
{
$this->markTestSkipped('Feature is unsupported');
}
public function testDeflate(): void
{
$this->markTestSkipped('Feature is unsupported');
}
public function testChunked(): void
{
$this->markTestSkipped('Feature is unsupported');
}
public function testRedirect(): void
{
$this->markTestSkipped('Feature is unsupported');
}
}