mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 09:26:21 -05:00
18 lines
376 B
Go
18 lines
376 B
Go
package protocol_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/common/predicate"
|
|
. "github.com/v2ray/v2ray-core/common/protocol"
|
|
"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(predicate.BytesAll(id.CmdKey(), 0)).IsFalse()
|
|
}
|