(self)
| 1621 | assert_equal(test.mask, control.mask) |
| 1622 | |
| 1623 | def test_intersect1d(self): |
| 1624 | # Test intersect1d |
| 1625 | x = array([1, 3, 3, 3], mask=[0, 0, 0, 1]) |
| 1626 | y = array([3, 1, 1, 1], mask=[0, 0, 0, 1]) |
| 1627 | test = intersect1d(x, y) |
| 1628 | control = array([1, 3, -1], mask=[0, 0, 1]) |
| 1629 | assert_equal(test, control) |
| 1630 | |
| 1631 | def test_setxor1d(self): |
| 1632 | # Test setxor1d |
nothing calls this directly
no test coverage detected