Example #1
0
 public function testClosedCreation()
 {
     $stream = new MioStream(fsockopen('127.0.0.1', 8888, $errno = null, $errstr = null), '127.0.0.1:8888');
     $stream->close();
     try {
         $key = new MioSelectionKey($stream, 0);
         $this->fail();
     } catch (MioClosedException $e) {
         $this->pass();
     }
 }