go-junit-report/testdata/001-pass-fail-skip.txt
Joël Stemmer 4d05b2dc3f Regenerate testdata files
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.
2022-05-14 23:21:56 +01:00

28 lines
575 B
Plaintext

=== RUN TestPass
--- PASS: TestPass (0.06s)
=== RUN TestPassLog
pass_test.go:9: log line
pass_test.go:10: log
multi
line
--- PASS: TestPassLog (0.10s)
PASS
ok package/pass 0.160s
=== RUN TestOne
fail_test.go:6: Error message
fail_test.go:7: Longer
error
message.
--- FAIL: TestOne (0.151s)
FAIL
FAIL package/fail 0.151s
=== RUN TestSkip
skip_test.go:6: skip message
--- SKIP: TestSkip (0.02s)
=== RUN TestSkipNow
skip_test.go:10: log message
--- SKIP: TestSkipNow (0.13s)
PASS
ok package/skip 0.150s
FAIL