mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 08:29:33 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			157 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			157 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package utils
 | |
| 
 | |
| import (
 | |
| 	"Open_IM/pkg/utils"
 | |
| 	"net"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestServerIP(t *testing.T) {
 | |
| 	if net.ParseIP(utils.ServerIP) == nil {
 | |
| 		t.Fail()
 | |
| 	}
 | |
| }
 |