package godog import ( "fmt" "testing" ) func TestSucceedWithJUnit(t *testing.T) { const format = "junit" // Will test concurrency setting 0, 1, 2 and 3. for concurrency := range make([]int, 4) { t.Run( fmt.Sprintf("%s_concurrency_%d", format, concurrency), func(t *testing.T) { testSucceedRun(t, format, concurrency, expectedOutputJUnit) }, ) } } const expectedOutputJUnit = ` `