(**kwargs)
| 44 | |
| 45 | |
| 46 | def get_topology_settings_dict(**kwargs): |
| 47 | settings = { |
| 48 | "monitor_class": DummyMonitor, |
| 49 | "heartbeat_frequency": HEARTBEAT_FREQUENCY, |
| 50 | "pool_class": MockPool, |
| 51 | } |
| 52 | settings.update(kwargs) |
| 53 | return settings |
| 54 | |
| 55 | |
| 56 | def create_topology(scenario_def, **kwargs): |
no test coverage detected