mirror of
				https://github.com/oneclickvirt/basics.git
				synced 2025-10-31 12:06:30 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			314 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			314 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package network
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestIpv4SecurityCheck(t *testing.T) {
 | |
| 	// 全项测试
 | |
| 	ipInfo, _, _ := NetworkCheck("both", false, "zh")
 | |
| 	fmt.Println("--------------------------------------------------")
 | |
| 	fmt.Printf(ipInfo)
 | |
| 	fmt.Println("--------------------------------------------------")
 | |
| }
 | 
