(self)
| 222 | self._sock_operation(1, 1.5, 'recv', 1024) |
| 223 | |
| 224 | def testAcceptTimeout(self): |
| 225 | # Test accept() timeout |
| 226 | socket_helper.bind_port(self.sock, self.localhost) |
| 227 | self.sock.listen() |
| 228 | self._sock_operation(1, 1.5, 'accept') |
| 229 | |
| 230 | def testSend(self): |
| 231 | # Test send() timeout |
nothing calls this directly
no test coverage detected