mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 15:36:41 -05:00
test case for port range
This commit is contained in:
parent
18069d377c
commit
31d03a893a
19
common/net/port_test.go
Normal file
19
common/net/port_test.go
Normal file
@ -0,0 +1,19 @@
|
||||
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()
|
||||
}
|
Loading…
Reference in New Issue
Block a user