We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 541a1d9 commit e3ff503Copy full SHA for e3ff503
1 file changed
tests/SocketTest.php
@@ -60,6 +60,19 @@ public function testClientEndAgainWillNotBlock(Socket $client)
60
{
61
$client->end();
62
$this->loop->run();
63
+
64
+ return $client;
65
+ }
66
67
+ /**
68
+ *
69
+ * @param Socket $client
70
+ * @depends testClientEndAgainWillNotBlock
71
+ */
72
+ public function testClientSendAfterEndIsNoop(Socket $client)
73
+ {
74
+ $client->send('does not matter');
75
+ $this->loop->run();
76
}
77
78
public function testCreatePair()
0 commit comments