Files
mattermost/api4/system_test.go
2017-02-17 10:57:19 +00:00

19 lines
200 B
Go

package api4
import (
"testing"
)
func TestGetPing(t *testing.T) {
th := Setup().InitBasic()
defer TearDown()
Client := th.Client
b, _ := Client.GetPing()
if b == false {
t.Fatal()
}
}