@@ -100,12 +100,18 @@ public function testLoopWillEndWhenServerIsClosed()
100100 $ this ->server = null ;
101101
102102 $ this ->loop ->run ();
103+
104+ // if we reach this, then everything is good
105+ $ this ->assertNull (null );
103106 }
104107
105108 public function testCloseTwiceIsNoOp ()
106109 {
107110 $ this ->server ->close ();
108111 $ this ->server ->close ();
112+
113+ // if we reach this, then everything is good
114+ $ this ->assertNull (null );
109115 }
110116
111117 public function testGetAddressAfterCloseReturnsNull ()
@@ -129,6 +135,9 @@ public function testLoopWillEndWhenServerIsClosedAfterSingleConnection()
129135 });
130136
131137 $ this ->loop ->run ();
138+
139+ // if we reach this, then everything is good
140+ $ this ->assertNull (null );
132141 }
133142
134143 public function testDataWillBeEmittedInMultipleChunksWhenClientSendsExcessiveAmounts ()
@@ -164,9 +173,6 @@ public function testDataWillBeEmittedInMultipleChunksWhenClientSendsExcessiveAmo
164173 $ this ->assertEquals ($ bytes , $ received );
165174 }
166175
167- /**
168- * @covers React\EventLoop\StreamSelectLoop::tick
169- */
170176 public function testConnectionDoesNotEndWhenClientDoesNotClose ()
171177 {
172178 $ client = stream_socket_client ($ this ->uds );
@@ -181,7 +187,6 @@ public function testConnectionDoesNotEndWhenClientDoesNotClose()
181187 }
182188
183189 /**
184- * @covers React\EventLoop\StreamSelectLoop::tick
185190 * @covers React\Socket\Connection::end
186191 */
187192 public function testConnectionDoesEndWhenClientCloses ()
0 commit comments