(self)
| 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"}) |
| 422 | arr.spam = [np.array([1, 2, 3], dtype=int) for _ in range(15)] |
| 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"}) |
nothing calls this directly
no test coverage detected