(self, engine, store)
| 152 | assert "提升" in report["summary"] |
| 153 | |
| 154 | def test_compare_missing_a(self, engine, store): |
| 155 | store.save_scenario("存在", engine) |
| 156 | with pytest.raises(KeyError): |
| 157 | store.compare("不存在", "存在") |
| 158 | |
| 159 | def test_compare_missing_b(self, engine, store): |
| 160 | store.save_scenario("存在", engine) |
nothing calls this directly
no test coverage detected