(self)
| 419 | # Test suite for classes that wrap MaskedArrays |
| 420 | |
| 421 | def setup_method(self): |
| 422 | m = np.ma.masked_array([1, 3, 5], mask=[False, True, False]) |
| 423 | wm = WrappedArray(m) |
| 424 | self.data = (m, wm) |
| 425 | |
| 426 | def test_masked_unary_operations(self): |
| 427 | # Tests masked_unary_operation |
nothing calls this directly
no test coverage detected