This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeNode/internal/iplibrary/manager_ip_list_test.go
T

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)
}
}