github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/cf/commands/servicekey/servicekey_suite_test.go (about)

     1  package servicekey_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"code.cloudfoundry.org/cli/cf/i18n"
     7  	"code.cloudfoundry.org/cli/cf/util/testhelpers/configuration"
     8  
     9  	. "github.com/onsi/ginkgo"
    10  	. "github.com/onsi/gomega"
    11  )
    12  
    13  func TestServicekey(t *testing.T) {
    14  	config := configuration.NewRepositoryWithDefaults()
    15  	i18n.T = i18n.Init(config)
    16  
    17  	RegisterFailHandler(Fail)
    18  	RunSpecs(t, "Servicekey Suite")
    19  }