...

Source file src/github.com/onsi/ginkgo/v2/reporters/reporters_suite_test.go

Documentation: github.com/onsi/ginkgo/v2/reporters

     1  package reporters_test
     2  
     3  import (
     4  	"fmt"
     5  
     6  	. "github.com/onsi/ginkgo/v2"
     7  	. "github.com/onsi/gomega"
     8  
     9  	"testing"
    10  )
    11  
    12  func TestReporters(t *testing.T) {
    13  	RegisterFailHandler(Fail)
    14  	RunSpecs(t, "Reporters Suite")
    15  }
    16  
    17  //leave this alone!
    18  
    19  func FixtureFunction() {
    20  	a := 0
    21  	for a < 100 {
    22  		fmt.Println(a)
    23  		fmt.Println(a + 1)
    24  		fmt.Println(a + 3)
    25  		fmt.Println(a + 4)
    26  		fmt.Println(a + 5)
    27  
    28  		fmt.Println(a + 6)
    29  		fmt.Println(a + 7)
    30  		a++
    31  	}
    32  }
    33  

View as plain text