Files
open-im-server/src/utils/get_server_ip_test.go
T

13 lines
130 B
Go
Raw Normal View History

2021-10-21 11:30:48 +08:00
package utils
import (
"net"
"testing"
)
func TestServerIP(t *testing.T) {
if net.ParseIP(ServerIP) == nil {
t.Fail()
}
}