12345678910111213141516171819 |
- package client_test
- import (
- "fmt"
- "os"
- "testing"
- . "github.com/onsi/ginkgo"
- . "github.com/onsi/gomega"
- )
- func TestClient(t *testing.T) {
- if testInstance == "" {
- fmt.Println("a testing instance has to be defined with TEST_INSTANCE")
- os.Exit(1)
- }
- RegisterFailHandler(Fail)
- RunSpecs(t, "Client Suite")
- }
|