(t *testing.T)
| 20 | } |
| 21 | |
| 22 | func TestBitMapStructure_SetBit(t *testing.T) { |
| 23 | bitmap := initBitMap() |
| 24 | defer bitmap.db.Clean() |
| 25 | |
| 26 | // Test SetBit function |
| 27 | bitmapErr = bitmap.SetBit(string(randkv.GetTestKey(1)), 0, true) |
| 28 | assert.Nil(t, bitmapErr) |
| 29 | } |
| 30 | |
| 31 | func TestBitMapStructure_SetBits(t *testing.T) { |
| 32 | bitmap := initBitMap() |
nothing calls this directly
no test coverage detected