github.com/cloudfoundry-incubator/stembuild@v0.0.0-20211223202937-5b61d62226c6/package_stemcell/ovftool/ovftool_suite_test.go (about)

     1  package ovftool_test
     2  
     3  import (
     4  	"math/rand"
     5  	"testing"
     6  	"time"
     7  
     8  	. "github.com/onsi/ginkgo"
     9  	. "github.com/onsi/gomega"
    10  )
    11  
    12  var _ = BeforeSuite(func() {
    13  	rand.Seed(time.Now().UnixNano())
    14  })
    15  
    16  func TestStembuildOptions(t *testing.T) {
    17  	RegisterFailHandler(Fail)
    18  	RunSpecs(t, "OvfTool Suite")
    19  }