github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/pkg/bindings/test/test_suite_test.go (about)

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