1 package large_fixture_test 2 3 import ( 4 "fmt" 5 "testing" 6 7 . "github.com/onsi/ginkgo/v2" 8 . "github.com/onsi/gomega" 9 ) 10 11 func TestLargeFixture(t *testing.T) { 12 RegisterFailHandler(Fail) 13 RunSpecs(t, "LargeFixture Suite") 14 } 15 16 var _ = Describe("All the Tests", func() { 17 for i := 0; i < 2048; i++ { 18 It(fmt.Sprintf("%d", i), func() {}) 19 } 20 }) 21