(self)
| 2050 | class TestSolutionArray: |
| 2051 | |
| 2052 | def test_passthrough(self): |
| 2053 | states = ct.SolutionArray(self.gas, 3) |
| 2054 | assert states.n_species == self.gas.n_species |
| 2055 | assert states.reaction(10).equation == self.gas.reaction(10).equation |
| 2056 | |
| 2057 | def test_meta(self): |
| 2058 | meta = {'foo': 'bar', 'spam': 'eggs'} |
nothing calls this directly
no test coverage detected