1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package test_bindings_test import ( "testing" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "github.com/sirupsen/logrus" ) func TestTest(t *testing.T) { if testing.Verbose() { logrus.SetLevel(logrus.DebugLevel) } RegisterFailHandler(Fail) RunSpecs(t, "Test Suite") }