Browse Source

test case for port range

v2ray 9 năm trước cách đây
mục cha
commit
31d03a893a
1 tập tin đã thay đổi với 19 bổ sung0 xóa
  1. 19 0
      common/net/port_test.go

+ 19 - 0
common/net/port_test.go

@@ -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()
+}