(self)
| 3509 | self.assertEqual(self.serv_sock.recv(len(MSG)), MSG) |
| 3510 | |
| 3511 | def _testSendmsgArray(self): |
| 3512 | self.assertEqual(self.sendmsgToServer([array.array("B", MSG)]), |
| 3513 | len(MSG)) |
| 3514 | |
| 3515 | def testSendmsgGather(self): |
| 3516 | # Send message data from more than one buffer (gather write). |
nothing calls this directly
no test coverage detected