(self, store)
| 75 | assert rec["run_stats"]["decision_metrics"]["acceptance_rate"] == pytest.approx(0.8) |
| 76 | |
| 77 | def test_load_missing(self, store): |
| 78 | assert store.load_scenario("不存在") is None |
| 79 | |
| 80 | def test_delete_scenario(self, engine, store): |
| 81 | store.save_scenario("临时", engine) |
nothing calls this directly
no test coverage detected