(self)
| 402 | self.check(arr, arr.info(rows=12, width=self.width), 13) |
| 403 | |
| 404 | def test_plus_minus_e(self): |
| 405 | arr = ct.SolutionArray(self.gas, 20, extra={"foo": "bar", "spam": "eggs"}) |
| 406 | self.check(arr, arr.info(rows=9, width=100), 10) |
| 407 | arr.foo = np.linspace(-1e6, 1.5e6, 20) |
| 408 | self.check(arr, arr.info(rows=12, width=self.width), 13) |
| 409 | |
| 410 | def test_strings(self): |
| 411 | arr = ct.SolutionArray(self.gas, 26, extra={"foo": "bar", "spam": "eggs"}) |
nothing calls this directly
no test coverage detected