(self)
| 609 | assert_array_equal(setdiff1d(a, b), np.array(['c'])) |
| 610 | |
| 611 | def test_manyways(self): |
| 612 | a = np.array([5, 7, 1, 2, 8]) |
| 613 | b = np.array([9, 8, 2, 4, 3, 1, 5]) |
| 614 | |
| 615 | c1 = setxor1d(a, b) |
| 616 | aux1 = intersect1d(a, b) |
| 617 | aux2 = union1d(a, b) |
| 618 | c2 = setdiff1d(aux2, aux1) |
| 619 | assert_array_equal(c1, c2) |
| 620 | |
| 621 | |
| 622 | class TestUnique: |
nothing calls this directly
no test coverage detected