mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 16:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package iplibrary
 | 
						|
 | 
						|
import "testing"
 | 
						|
 | 
						|
func TestIPListManager_loop(t *testing.T) {
 | 
						|
	manager := NewIPListManager()
 | 
						|
	manager.pageSize = 2
 | 
						|
	err := manager.loop()
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
}
 |