(self)
| 3209 | self.cli.sendto(MSG, 0, (HOST, self.port)) |
| 3210 | |
| 3211 | def testRecvFrom(self): |
| 3212 | # Testing recvfrom() over UDP |
| 3213 | msg, addr = self.serv.recvfrom(len(MSG)) |
| 3214 | self.assertEqual(msg, MSG) |
| 3215 | |
| 3216 | def _testRecvFrom(self): |
| 3217 | self.cli.sendto(MSG, 0, (HOST, self.port)) |
nothing calls this directly
no test coverage detected