(self, engine, store)
| 60 | assert len(store.list_scenarios()) == 1 |
| 61 | |
| 62 | def test_save_multiple(self, engine, store): |
| 63 | store.save_scenario("场景A", engine, _mock_stats()) |
| 64 | store.save_scenario("场景B", engine, _mock_stats()) |
| 65 | items = store.list_scenarios() |
| 66 | names = {i["name"] for i in items} |
| 67 | assert {"场景A", "场景B"} == names |
| 68 | |
| 69 | def test_load_scenario(self, engine, store): |
| 70 | store.save_scenario("基准", engine, _mock_stats()) |
nothing calls this directly
no test coverage detected