(self)
| 5800 | """Prove network connection.""" |
| 5801 | |
| 5802 | def clientSetUp(self): |
| 5803 | # We're inherited below by BasicTCPTest2, which also inherits |
| 5804 | # BasicTCPTest, which defines self.port referenced below. |
| 5805 | self.cli = socket.create_connection((HOST, self.port)) |
| 5806 | self.serv_conn = self.cli |
| 5807 | |
| 5808 | class BasicTCPTest2(NetworkConnectionTest, BasicTCPTest): |
| 5809 | """Tests that NetworkConnection does not break existing TCP functionality. |
nothing calls this directly
no test coverage detected