(self)
| 3406 | self.assertEqual(self.serv_sock.recv(len(MSG)), MSG) |
| 3407 | |
| 3408 | def _testSendmsgArray(self): |
| 3409 | self.assertEqual(self.sendmsgToServer([array.array("B", MSG)]), |
| 3410 | len(MSG)) |
| 3411 | |
| 3412 | def testSendmsgGather(self): |
| 3413 | # Send message data from more than one buffer (gather write). |
nothing calls this directly
no test coverage detected