(self)
| 423 | self.check(arr, arr.info(rows=12, width=self.width), 13) |
| 424 | |
| 425 | def test_string_vector(self): |
| 426 | arr = ct.SolutionArray(self.gas, 15, extra={"spam": "eggs"}) |
| 427 | arr.spam = [["foo", "bar"] for _ in range(15)] |
| 428 | self.check(arr, arr.info(rows=12, width=self.width), 13) |
| 429 | |
| 430 | def test_select_species(self): |
| 431 | arr = ct.SolutionArray(self.gas, 5) |
nothing calls this directly
no test coverage detected