summaryrefslogtreecommitdiffstats
path: root/api4/system_test.go
blob: d9514eabc7d7dd81a1f6a2fe16f45dbbbd691ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()
	}
}