mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00

Many of the testdata files were generated a long time ago with very old versions of Go. The Go test output has changed over time, and these test inputs no longer reflect the current state. The intention is to fully support the test output of the most recent Go versions. This commit also includes the source used to generate the test output, so the output can be more easily updated in the future.
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestFlat(t *testing.T) {
|
|
t.Logf("log 1")
|
|
t.Logf("log 2")
|
|
fmt.Printf("printf 1\n")
|
|
fmt.Printf("printf 2\n")
|
|
}
|
|
|
|
func TestWithSpace(t *testing.T) {
|
|
t.Logf("no-space")
|
|
t.Logf(" one-space")
|
|
t.Logf(" two-space")
|
|
t.Logf(" four-space")
|
|
t.Logf(" eight-space")
|
|
t.Logf("no-space")
|
|
fmt.Printf("no-space\n")
|
|
fmt.Printf(" one-space\n")
|
|
fmt.Printf(" two-space\n")
|
|
fmt.Printf(" four-space\n")
|
|
fmt.Printf(" eight-space\n")
|
|
fmt.Printf("no-space\n")
|
|
}
|
|
|
|
func TestWithTab(t *testing.T) {
|
|
t.Logf("no-tab")
|
|
t.Logf("\tone-tab")
|
|
t.Logf("\t\ttwo-tab")
|
|
fmt.Printf("no-tab\n")
|
|
fmt.Printf("\tone-tab\n")
|
|
fmt.Printf("\t\ttwo-tab\n")
|
|
}
|
|
|
|
func TestWithNewlinesFlat(t *testing.T) {
|
|
t.Logf("no-newline")
|
|
t.Logf("one-newline\none-newline")
|
|
t.Logf("two-newlines\ntwo-newlines\ntwo-newlines")
|
|
fmt.Println("no-newline")
|
|
fmt.Println("one-newline\none-newline")
|
|
fmt.Println("two-newlines\ntwo-newlines\ntwo-newlines")
|
|
}
|
|
|
|
func TestSubTests(t *testing.T) {
|
|
t.Run("TestFlat", TestFlat)
|
|
t.Run("TestWithSpace", TestWithSpace)
|
|
t.Run("TestWithTab", TestWithTab)
|
|
t.Run("TestWithNewlinesFlat", TestWithNewlinesFlat)
|
|
}
|