1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-01 09:14:15 -04:00
v2fly/common/bitmask/byte_test.go

28 lines
458 B
Go
Raw Normal View History

2017-10-21 15:04:24 -04:00
package bitmask_test
import (
"testing"
. "v2ray.com/core/common/bitmask"
"v2ray.com/core/testing/assert"
)
func TestBitmaskByte(t *testing.T) {
assert := assert.On(t)
b := Byte(0)
b.Set(Byte(1))
assert.Bool(b.Has(1)).IsTrue()
b.Set(Byte(2))
assert.Bool(b.Has(2)).IsTrue()
assert.Bool(b.Has(1)).IsTrue()
b.Clear(Byte(1))
assert.Bool(b.Has(2)).IsTrue()
assert.Bool(b.Has(1)).IsFalse()
b.Toggle(Byte(2))
assert.Bool(b.Has(2)).IsFalse()
}