github.com/cloudfoundry-incubator/stembuild@v0.0.0-20211223202937-5b61d62226c6/colorlogger/colorlogger_suite_test.go (about)

     1  package colorlogger_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 TestColorLogger(t *testing.T) {
    17  	RegisterFailHandler(Fail)
    18  	RunSpecs(t, "Color Logger Suite")
    19  }