(self)
| 413 | self.check(arr, arr.info(rows=12, width=self.width), 13) |
| 414 | |
| 415 | def test_double_vector(self): |
| 416 | arr = ct.SolutionArray(self.gas, 15, extra={"spam": "eggs"}) |
| 417 | arr.spam = [[1.1, 2.2, 3.3] for _ in range(15)] |
| 418 | self.check(arr, arr.info(rows=12, width=self.width), 13) |
| 419 | |
| 420 | def test_integer_vector(self): |
| 421 | arr = ct.SolutionArray(self.gas, 15, extra={"spam": "eggs"}) |
nothing calls this directly
no test coverage detected