4 "github.com/stretchr/testify/assert"
8 func Test_accessBitmap_IsSet(t *testing.T) {
19 name: "returns true when bit is set",
20 bits: func() (access AccessBitmap) {
28 name: "returns false when bit is unset",
34 for _, tt := range tests {
35 t.Run(tt.name, func(t *testing.T) {
36 assert.Equalf(t, tt.want, tt.bits.IsSet(tt.args.i), "IsSet(%v)", tt.args.i)