(t *testing.T)
| 357 | } |
| 358 | |
| 359 | func TestTransposeWithCounts(t *testing.T) { |
| 360 | bsi := setup() |
| 361 | bsi.SetValue(101, 50) |
| 362 | transposed := bsi.TransposeWithCounts(0, bsi.GetExistenceBitmap()) |
| 363 | a, ok := transposed.GetValue(uint64(50)) |
| 364 | assert.True(t, ok) |
| 365 | assert.Equal(t, int64(2), a) |
| 366 | } |
| 367 | |
| 368 | func TestRangeAllNegative(t *testing.T) { |
| 369 | bsi := setupAllNegative() |
nothing calls this directly
no test coverage detected
searching dependent graphs…