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