mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +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()
|
|
}
|
|
}
|