github.com/openshift/dpu-operator@v0.0.0-20240502153209-3af840d137c2/dpu-cni/pkgs/cnilogging/cnilogging_suite_test.go (about)

     1  package cnilogging
     2  
     3  import (
     4  	"testing"
     5  
     6  	g "github.com/onsi/ginkgo/v2"
     7  	o "github.com/onsi/gomega"
     8  )
     9  
    10  func TestConfig(t *testing.T) {
    11  	o.RegisterFailHandler(g.Fail)
    12  	g.RunSpecs(t, "CNI Logging Suite")
    13  }
    14  
    15  var _ = g.BeforeSuite(func() {
    16  })
    17  
    18  var _ = g.AfterSuite(func() {
    19  })