From 7f547805ed69d4c722168c0d65abc62eae494bd5 Mon Sep 17 00:00:00 2001 From: Masudur Rahman Date: Tue, 25 Feb 2020 10:22:30 +0600 Subject: [PATCH] Add test for health check api Signed-off-by: Masudur Rahman --- rest-healthchek_integration_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 rest-healthchek_integration_test.go diff --git a/rest-healthchek_integration_test.go b/rest-healthchek_integration_test.go new file mode 100644 index 00000000..6a09d98c --- /dev/null +++ b/rest-healthchek_integration_test.go @@ -0,0 +1,15 @@ +package sdk_test + +import ( + "testing" +) + +func TestClient_CheckHealth(t *testing.T) { + shouldSkip(t) + client := getClient() + + err := client.CheckHealth() + if err != nil { + t.Fatal(err) + } +}