(self)
| 3414 | self.assertEqual(self.serv_sock.recv(len(MSG)), MSG) |
| 3415 | |
| 3416 | def _testSendmsgGather(self): |
| 3417 | self.assertEqual(self.sendmsgToServer([MSG[:3], MSG[3:]]), len(MSG)) |
| 3418 | |
| 3419 | def testSendmsgBadArgs(self): |
| 3420 | # Check that sendmsg() rejects invalid arguments. |
nothing calls this directly
no test coverage detected