mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 01:38:24 -05:00
28 lines
410 B
Go
28 lines
410 B
Go
package bitmask_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "v2ray.com/core/common/bitmask"
|
|
. "v2ray.com/ext/assert"
|
|
)
|
|
|
|
func TestBitmaskByte(t *testing.T) {
|
|
assert := With(t)
|
|
|
|
b := Byte(0)
|
|
b.Set(Byte(1))
|
|
assert(b.Has(1), IsTrue)
|
|
|
|
b.Set(Byte(2))
|
|
assert(b.Has(2), IsTrue)
|
|
assert(b.Has(1), IsTrue)
|
|
|
|
b.Clear(Byte(1))
|
|
assert(b.Has(2), IsTrue)
|
|
assert(b.Has(1), IsFalse)
|
|
|
|
b.Toggle(Byte(2))
|
|
assert(b.Has(2), IsFalse)
|
|
}
|