(self)
| 448 | self.check(arr, arr.info(rows=12, width=self.width), 10) |
| 449 | |
| 450 | def test_water_extra(self): |
| 451 | w = ct.Water() |
| 452 | arr = ct.SolutionArray(w, 15, extra={"spam": np.arange(15, dtype=int)}) |
| 453 | self.check(arr, arr.info(rows=7, width=self.width), 8) |
| 454 | |
| 455 | @pytest.fixture(scope='class') |
| 456 | def setup_solution_array_io_tests(request): |
nothing calls this directly
no test coverage detected