(self)
| 3240 | self.cli.sendto(MSG, 0, (HOST, self.port)) |
| 3241 | |
| 3242 | def testRecvFrom(self): |
| 3243 | # Testing recvfrom() over UDPLITE |
| 3244 | msg, addr = self.serv.recvfrom(len(MSG)) |
| 3245 | self.assertEqual(msg, MSG) |
| 3246 | |
| 3247 | def _testRecvFrom(self): |
| 3248 | self.cli.sendto(MSG, 0, (HOST, self.port)) |
nothing calls this directly
no test coverage detected