1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 14:35:23 +00:00
v2fly/common/net/port_test.go
2022-01-02 15:16:23 +00:00

19 lines
292 B
Go

package net_test
import (
"testing"
. "github.com/v2fly/v2ray-core/v5/common/net"
)
func TestPortRangeContains(t *testing.T) {
portRange := &PortRange{
From: 53,
To: 53,
}
if !portRange.Contains(Port(53)) {
t.Error("expected port range containing 53, but actually not")
}
}