File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import (
10
10
// Result is the result of a test.
11
11
type Result int
12
12
13
+ // Test results.
13
14
const (
14
15
Unknown Result = iota
15
16
Pass
Original file line number Diff line number Diff line change
1
+ // go-junit-report converts `go test` output to a JUnit compatible XML report.
2
+ //
3
+ // See README.md for more information and usage examples.
1
4
package main
2
5
3
6
import (
@@ -11,6 +14,7 @@ import (
11
14
"github.com/jstemmer/go-junit-report/v2/parser/gotest"
12
15
)
13
16
17
+ // Current release information printed by the -version flag.
14
18
var (
15
19
Version = "v2.0.0-dev"
16
20
Revision = "HEAD"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ func NewJSONParser(options ...Option) *JSONParser {
14
14
return & JSONParser {gp : NewParser (options ... )}
15
15
}
16
16
17
- // Parser is a Go test json output Parser.
17
+ // JSONParser is a `go test - json` output Parser.
18
18
type JSONParser struct {
19
19
gp * Parser
20
20
}
You can’t perform that action at this time.
0 commit comments