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