(t *testing.T)
| 61 | } |
| 62 | |
| 63 | func TestOrEquals(t *testing.T) { |
| 64 | a1 := randArray(t, n) |
| 65 | a2 := randArray(t, n) |
| 66 | o := a1.Clone() |
| 67 | o.OrEquals(a2) |
| 68 | for i := 0; i < n; i++ { |
| 69 | wrapRequire(t, |
| 70 | o.IsSet(i) == (a1.IsSet(i) || a2.IsSet(i)), |
| 71 | "i=%v", i) |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | func TestSetClear(t *testing.T) { |
| 76 | a := New(n) |
nothing calls this directly
no test coverage detected