github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/e2e_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 e2e 5 6 import ( 7 "k8s.io/apimachinery/pkg/util/rand" 8 "os" 9 "testing" 10 "time" 11 //import tests here 12 ) 13 14 func TestMain(m *testing.M) { 15 rand.Seed(time.Now().UnixNano()) 16 os.Exit(m.Run()) 17 } 18 19 func TestE2E(t *testing.T) { 20 RunE2ETests(t) 21 }