Add missing godoc on exported types

This commit is contained in:
Joël Stemmer 2022-08-11 00:47:46 +01:00
parent 066da07a49
commit 5616b5e921
3 changed files with 6 additions and 1 deletions

View File

@ -10,6 +10,7 @@ import (
// Result is the result of a test.
type Result int
// Test results.
const (
Unknown Result = iota
Pass

View File

@ -1,3 +1,6 @@
// go-junit-report converts `go test` output to a JUnit compatible XML report.
//
// See README.md for more information and usage examples.
package main
import (
@ -11,6 +14,7 @@ import (
"github.com/jstemmer/go-junit-report/v2/parser/gotest"
)
// Current release information printed by the -version flag.
var (
Version = "v2.0.0-dev"
Revision = "HEAD"

View File

@ -14,7 +14,7 @@ func NewJSONParser(options ...Option) *JSONParser {
return &JSONParser{gp: NewParser(options...)}
}
// Parser is a Go test json output Parser.
// JSONParser is a `go test -json` output Parser.
type JSONParser struct {
gp *Parser
}