mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
18 lines
324 B
Go
18 lines
324 B
Go
package protocol_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"v2ray.com/core/common/predicate"
|
|
. "v2ray.com/core/common/protocol"
|
|
"v2ray.com/core/common/uuid"
|
|
"v2ray.com/core/testing/assert"
|
|
)
|
|
|
|
func TestCmdKey(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
id := NewID(uuid.New())
|
|
assert.Bool(predicate.BytesAll(id.CmdKey(), 0)).IsFalse()
|
|
}
|