mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
366 B
20 lines
366 B
9 years ago
|
package net_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/v2ray/v2ray-core/common/net"
|
||
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
||
|
"github.com/v2ray/v2ray-core/testing/assert"
|
||
|
)
|
||
|
|
||
|
func TestPortRangeContains(t *testing.T) {
|
||
|
v2testing.Current(t)
|
||
|
|
||
|
portRange := &PortRange{
|
||
|
From: Port(53),
|
||
|
To: Port(53),
|
||
|
}
|
||
|
assert.Bool(portRange.Contains(Port(53))).IsTrue()
|
||
|
}
|