github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/integration/shared/isolated/isolated_suite_test.go (about)

     1  package isolated
     2  
     3  import (
     4  	"testing"
     5  
     6  	"code.cloudfoundry.org/cli/integration/helpers/commonisolated"
     7  )
     8  
     9  var (
    10  	// Suite Level
    11  	apiURL            string
    12  	skipSSLValidation bool
    13  	ReadOnlyOrg       string
    14  	ReadOnlySpace     string
    15  
    16  	// Per Test Level
    17  	homeDir string
    18  )
    19  
    20  func TestIsolated(t *testing.T) {
    21  	commonisolated.CommonTestIsolated(t)
    22  }
    23  
    24  var _ = commonisolated.CommonGinkgoSetup(
    25  	"summary_isi.txt",
    26  	&apiURL,
    27  	&skipSSLValidation,
    28  	&ReadOnlyOrg,
    29  	&ReadOnlySpace,
    30  	&homeDir,
    31  )