| 66 | |
| 67 | |
| 68 | class RecordingMockConnection(Framework.RecordingConnection): |
| 69 | def __init__(self, protocol, host, port, realConnection): |
| 70 | self._realConnection = realConnection |
| 71 | super().__init__(protocol, host, port) |
| 72 | |
| 73 | |
| 74 | @pytest.mark.parametrize( |
no outgoing calls
no test coverage detected
searching dependent graphs…