mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-05 17:45:59 +08:00
13 lines
130 B
Go
13 lines
130 B
Go
|
|
package utils
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestServerIP(t *testing.T) {
|
||
|
|
if net.ParseIP(ServerIP) == nil {
|
||
|
|
t.Fail()
|
||
|
|
}
|
||
|
|
}
|