(t *testing.T)
| 24 | ) |
| 25 | |
| 26 | func TestGetCompressedBit(t *testing.T) { |
| 27 | ba := newSparseBitArray() |
| 28 | |
| 29 | result, err := ba.GetBit(5) |
| 30 | assert.Nil(t, err) |
| 31 | assert.False(t, result) |
| 32 | } |
| 33 | |
| 34 | func BenchmarkGetCompressedBit(b *testing.B) { |
| 35 | numItems := 1000 |
nothing calls this directly
no test coverage detected
searching dependent graphs…