14 lines
167 B
Go
14 lines
167 B
Go
package clientIPTable
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestUpdateIpTableListClient(t *testing.T) {
|
|
err := UpdateIpTableListClient()
|
|
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|