Fixture for a `ManagerInterface` that asserts parameter types and forwards method calls to an internal public `mock.Mock` instance.
(create_mock_manager_interface)
| 137 | |
| 138 | @pytest.fixture |
| 139 | def mock_manager_interface(create_mock_manager_interface): |
| 140 | """ |
| 141 | Fixture for a `ManagerInterface` that asserts parameter types and |
| 142 | forwards method calls to an internal public `mock.Mock` instance. |
| 143 | """ |
| 144 | return create_mock_manager_interface() |
| 145 | |
| 146 | |
| 147 | @pytest.fixture |
nothing calls this directly
no test coverage detected