mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
458 B
28 lines
458 B
7 years ago
|
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()
|
||
|
}
|