github.com/cloudfoundry/cli@v7.1.0+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 )