github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/cf/commands/domain/domain_suite_test.go (about) 1 package domain_test 2 3 import ( 4 "code.cloudfoundry.org/cli/cf/i18n" 5 "code.cloudfoundry.org/cli/cf/util/testhelpers/configuration" 6 7 . "github.com/onsi/ginkgo" 8 . "github.com/onsi/gomega" 9 10 "testing" 11 ) 12 13 func TestDomain(t *testing.T) { 14 config := configuration.NewRepositoryWithDefaults() 15 i18n.T = i18n.Init(config) 16 17 RegisterFailHandler(Fail) 18 RunSpecs(t, "Domain Suite") 19 }