(self)
| 391 | self.check(arr, arr.info(rows=7, width=self.width), 8) |
| 392 | |
| 393 | def test_plus_minus_i(self): |
| 394 | arr = ct.SolutionArray(self.gas, 20, |
| 395 | extra={"foo": 10 * np.arange(-10, 10, dtype=int)}) |
| 396 | self.check(arr, arr.info(rows=12, width=self.width), 13) |
| 397 | |
| 398 | def test_plus_minus_f(self): |
| 399 | arr = ct.SolutionArray(self.gas, 20, extra={"foo": "bar", "spam": "eggs"}) |
nothing calls this directly
no test coverage detected