1 // Copyright 2020 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 package stress 5 6 import ( 7 "testing" 8 9 . "github.com/onsi/ginkgo/v2" 10 . "github.com/onsi/gomega" 11 ) 12 13 func TestStress(t *testing.T) { 14 RegisterFailHandler(Fail) 15 RunSpecs(t, "Stress Test Suite") 16 } 17