client_suite_test.go 318 B

12345678910111213141516171819
  1. package client_test
  2. import (
  3. "fmt"
  4. "os"
  5. "testing"
  6. . "github.com/onsi/ginkgo"
  7. . "github.com/onsi/gomega"
  8. )
  9. func TestClient(t *testing.T) {
  10. if testInstance == "" {
  11. fmt.Println("a testing instance has to be defined with TEST_INSTANCE")
  12. os.Exit(1)
  13. }
  14. RegisterFailHandler(Fail)
  15. RunSpecs(t, "Client Suite")
  16. }