(self)
| 1577 | assert_equal(test.mask, control.mask) |
| 1578 | |
| 1579 | def test_intersect1d(self): |
| 1580 | # Test intersect1d |
| 1581 | x = array([1, 3, 3, 3], mask=[0, 0, 0, 1]) |
| 1582 | y = array([3, 1, 1, 1], mask=[0, 0, 0, 1]) |
| 1583 | test = intersect1d(x, y) |
| 1584 | control = array([1, 3, -1], mask=[0, 0, 1]) |
| 1585 | assert_equal(test, control) |
| 1586 | |
| 1587 | def test_setxor1d(self): |
| 1588 | # Test setxor1d |
nothing calls this directly
no test coverage detected