(self)
| 164 | self.assertEqual(buf, TEST_STR) |
| 165 | |
| 166 | def test_TCPServer(self): |
| 167 | self.run_server(socketserver.TCPServer, |
| 168 | socketserver.StreamRequestHandler, |
| 169 | self.stream_examine) |
| 170 | |
| 171 | def test_ThreadingTCPServer(self): |
| 172 | self.run_server(socketserver.ThreadingTCPServer, |
nothing calls this directly
no test coverage detected