github.com/verrazzano/verrazzano@v1.7.1/tools/psr/tests/scenarios/opensearch/s2/opensearch_s2_suite_test.go (about) 1 // Copyright (c) 2022, 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 s2 5 6 import ( 7 "flag" 8 "testing" 9 10 "github.com/onsi/ginkgo/v2" 11 "github.com/verrazzano/verrazzano/tests/e2e/pkg/test/framework" 12 ) 13 14 var t = framework.NewTestFramework("psr_ops_s2") 15 16 var skipStartScenario bool 17 var skipStopScenario bool 18 19 func init() { 20 flag.BoolVar(&skipStartScenario, "skipStartScenario", false, "skipStartScenario skips the call to start the scenario") 21 flag.BoolVar(&skipStopScenario, "skipStopScenario", false, "skipStopScenario skips the call to stop the scenario") 22 } 23 24 func TestOpenSearchScenarios(test *testing.T) { 25 t.RegisterFailHandler() 26 ginkgo.RunSpecs(test, "Opensearch ops-s2 Suite") 27 }