github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/multicluster/verify-register/verify_register_suite_test.go (about) 1 // Copyright (c) 2021, 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 register_test 5 6 import ( 7 "flag" 8 "testing" 9 10 "github.com/onsi/ginkgo/v2" 11 ) 12 13 var minimalVerification bool 14 var skipLogging bool 15 16 func init() { 17 flag.BoolVar(&minimalVerification, "minimalVerification", false, "minimalVerification to perform minimal verification") 18 flag.BoolVar(&skipLogging, "skipLogging", false, "skip logging test for registration verification") 19 } 20 21 func TestVerifyRegister(test *testing.T) { 22 t.RegisterFailHandler() 23 ginkgo.RunSpecs(test, "Register Managed Cluster multi-cluster Suite") 24 }