(t *testing.T)
| 39 | } |
| 40 | |
| 41 | func TestSetMany(t *testing.T) { |
| 42 | bsi := setup() |
| 43 | |
| 44 | upd := BitmapOf(30, 31, 32, 33, 34, 35, 101, 102, 103) |
| 45 | // update many including existing columns |
| 46 | bsi.SetMany(upd, 35) |
| 47 | |
| 48 | matches := bsi.CompareValue(0, EQ, 35, 0, nil) |
| 49 | |
| 50 | assert.True(t, upd.Equals(matches)) |
| 51 | } |
| 52 | |
| 53 | func TestSetAndGetBigValue(t *testing.T) { |
| 54 |
nothing calls this directly
no test coverage detected
searching dependent graphs…