File: 001-pass-fail-skip.txt

package info (click to toggle)
golang-github-jstemmer-go-junit-report 2.1.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 696 kB
  • sloc: xml: 975; makefile: 24
file content (27 lines) | stat: -rw-r--r-- 575 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
=== 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