Fixture for a `HostInterface` that forwards method calls to an internal public `mock.Mock` instance.
()
| 93 | |
| 94 | @pytest.fixture |
| 95 | def mock_host_interface(): |
| 96 | """ |
| 97 | Fixture for a `HostInterface` that forwards method calls to an |
| 98 | internal public `mock.Mock` instance. |
| 99 | """ |
| 100 | return MockHostInterface() |
| 101 | |
| 102 | |
| 103 | @pytest.fixture |
nothing calls this directly
no test coverage detected