()
| 9 | ) |
| 10 | |
| 11 | func initBitmap() *BitmapStructure { |
| 12 | opts := config.DefaultOptions |
| 13 | dir, _ := os.MkdirTemp("", "TestBitmapStructure") |
| 14 | opts.DirPath = dir |
| 15 | bitmap, _ := NewBitmap(opts) |
| 16 | return bitmap |
| 17 | } |
| 18 | |
| 19 | func TestNewBitmap(t *testing.T) { |
| 20 |
no test coverage detected