1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/common/protocol/id_test.go

20 lines
325 B
Go
Raw Normal View History

package protocol_test
2016-01-20 16:45:50 +00:00
import (
2016-01-21 12:05:16 +00:00
"testing"
2016-01-20 16:45:50 +00:00
2016-08-20 18:55:45 +00:00
. "v2ray.com/core/common/protocol"
"v2ray.com/core/common/uuid"
2017-10-24 14:15:35 +00:00
. "v2ray.com/ext/assert"
2016-01-20 16:45:50 +00:00
)
2017-12-17 23:07:50 +00:00
func TestIdEquals(t *testing.T) {
assert := With(t)
id1 := NewID(uuid.New())
id2 := NewID(id1.UUID())
assert(id1.Equals(id2), IsTrue)
assert(id1.String(), Equals, id2.String())
}