(self)
| 15 | assert config.output_dir.endswith(config_name) |
| 16 | |
| 17 | def test_2_5B(self): |
| 18 | for config_name in ["b32_fullcc", "b16_fullcc", "l14_fullcc", "h14_fullcc"]: |
| 19 | config = search_config(config_name) |
| 20 | self.assertEqual(config.name, config_name) |
| 21 | assert config.output_dir.endswith(config_name) |
| 22 | |
| 23 | |
| 24 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected