(self, host, port, handler, key)
| 70 | block_on_close = False |
| 71 | |
| 72 | def __init__(self, host, port, handler, key): |
| 73 | super(JavaAgentServer, self).__init__((host, port), JavaAgentHandler) |
| 74 | self.handler = handler |
| 75 | self.key = key |
| 76 | |
| 77 | |
| 78 | def test_handler(r, rhandle): |
nothing calls this directly
no outgoing calls
no test coverage detected