mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-04-30 23:33:06 +08:00
14 lines
157 B
Go
14 lines
157 B
Go
|
|
package utils
|
||
|
|
|
||
|
|
import (
|
||
|
|
"Open_IM/pkg/utils"
|
||
|
|
"net"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestServerIP(t *testing.T) {
|
||
|
|
if net.ParseIP(utils.ServerIP) == nil {
|
||
|
|
t.Fail()
|
||
|
|
}
|
||
|
|
}
|