public function testCloseDoesNotClosePersistentSocket()
 {
     $this->setMockHandler();
     $this->handler->setPersistent(true);
     $this->writeRecord('Hello world');
     $this->assertTrue(is_resource($this->res));
     $this->handler->close();
     $this->assertTrue(is_resource($this->res));
 }