github.com/swisscom/cloudfoundry-cli@v7.1.0+incompatible/cf/appfiles/app_files_suite_test.go (about)

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