(self)
| 349 | class TestView: |
| 350 | |
| 351 | def setup_method(self): |
| 352 | (a, b) = (np.arange(10), np.random.rand(10)) |
| 353 | ndtype = [('a', float), ('b', float)] |
| 354 | arr = np.array(list(zip(a, b)), dtype=ndtype) |
| 355 | |
| 356 | mrec = fromarrays([a, b], dtype=ndtype, fill_value=(-9., -99.)) |
| 357 | mrec.mask[3] = (False, True) |
| 358 | self.data = (mrec, a, b, arr) |
| 359 | |
| 360 | def test_view_by_itself(self): |
| 361 | (mrec, a, b, arr) = self.data |
nothing calls this directly
no test coverage detected