github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/bindings/test/test_suite_test.go (about)

     1  package test_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  }