(self)
| 3089 | self.serv_conn.send(MSG) |
| 3090 | |
| 3091 | def testRecvFrom(self): |
| 3092 | # Testing large recvfrom() over TCP |
| 3093 | msg, addr = self.cli_conn.recvfrom(1024) |
| 3094 | self.assertEqual(msg, MSG) |
| 3095 | |
| 3096 | def _testRecvFrom(self): |
| 3097 | self.serv_conn.send(MSG) |
nothing calls this directly
no test coverage detected