(self, name)
| 1135 | infile = 'duplicate-reactions.yaml' |
| 1136 | |
| 1137 | def check(self, name): |
| 1138 | with pytest.raises(ct.CanteraError, match='duplicate reaction'): |
| 1139 | ct.Solution(self.infile, name) |
| 1140 | |
| 1141 | def test_forward_multiple(self): |
| 1142 | self.check('A') |
no test coverage detected