1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 03:25:23 +00:00
v2fly/common/net/port_test.go
2017-10-24 16:15:35 +02:00

19 lines
263 B
Go

package net_test
import (
"testing"
. "v2ray.com/core/common/net"
. "v2ray.com/ext/assert"
)
func TestPortRangeContains(t *testing.T) {
assert := With(t)
portRange := &PortRange{
From: 53,
To: 53,
}
assert(portRange.Contains(Port(53)), IsTrue)
}