1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00
v2fly/common/protocol/id_test.go
2016-05-24 21:55:46 +02:00

18 lines
372 B
Go

package protocol_test
import (
"testing"
. "github.com/v2ray/v2ray-core/common/protocol"
"github.com/v2ray/v2ray-core/common/serial"
"github.com/v2ray/v2ray-core/common/uuid"
"github.com/v2ray/v2ray-core/testing/assert"
)
func TestCmdKey(t *testing.T) {
assert := assert.On(t)
id := NewID(uuid.New())
assert.Bool(serial.BytesT(id.CmdKey()).All(0)).IsFalse()
}