Fixture for transport factory :param config: pytest config :return: new transport factory
(config: Config)
| 109 | |
| 110 | @pytest.fixture(scope="module") |
| 111 | def transport_factory(config: Config): |
| 112 | """ |
| 113 | Fixture for transport factory |
| 114 | :param config: pytest config |
| 115 | :return: new transport factory |
| 116 | """ |
| 117 | return TransportFactory(config) |
| 118 | |
| 119 | |
| 120 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected