(self)
| 5590 | assert_equal(np.ma.getmask(result), np.ones(vector.shape, dtype=bool)) |
| 5591 | |
| 5592 | def test_ufunc(self): |
| 5593 | self._do_add_test(np.add) |
| 5594 | |
| 5595 | def test_operator(self): |
| 5596 | self._do_add_test(lambda a, b: a + b) |
nothing calls this directly
no test coverage detected