github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/quickcreate/quickcreate_suite_test.go (about) 1 // Copyright (c) 2023, Oracle and/or its affiliates. 2 // Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 3 4 package quickcreate 5 6 import ( 7 "flag" 8 "github.com/onsi/ginkgo/v2" 9 "github.com/verrazzano/verrazzano/tests/e2e/pkg/test/framework" 10 "testing" 11 ) 12 13 var ( 14 t = framework.NewTestFramework("quickcreate") 15 clusterType string 16 ) 17 18 func init() { 19 flag.StringVar(&clusterType, "clusterType", Ocneoci, "The type of Quick Create cluster to test") 20 } 21 22 func TestQuickCreate(test *testing.T) { 23 t.RegisterFailHandler() 24 ginkgo.RunSpecs(test, "CAPI QuickCreate Suite") 25 }