(self, filename, args, listen_port)
| 158 | |
| 159 | class CompiledServerHarness: |
| 160 | def __init__(self, filename, args, listen_port): |
| 161 | self.process = None |
| 162 | self.filename = filename |
| 163 | self.listen_port = listen_port |
| 164 | self.args = args or [] |
| 165 | |
| 166 | def __enter__(self): |
| 167 | # assuming this is only used for WebSocket tests at the moment, validate that |
nothing calls this directly
no outgoing calls
no test coverage detected