mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 09:49:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			319 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			319 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package net_test
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	. "github.com/v2ray/v2ray-core/common/net"
 | |
| 	"github.com/v2ray/v2ray-core/testing/assert"
 | |
| )
 | |
| 
 | |
| func TestPortRangeContains(t *testing.T) {
 | |
| 	assert := assert.On(t)
 | |
| 
 | |
| 	portRange := &PortRange{
 | |
| 		From: Port(53),
 | |
| 		To:   Port(53),
 | |
| 	}
 | |
| 	assert.Bool(portRange.Contains(Port(53))).IsTrue()
 | |
| }
 | 
