mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
Revert changes to coverage regexps
Add expected test output instead
This commit is contained in:
parent
a9c8bce520
commit
0f1caf6c3e
@ -312,7 +312,9 @@ var testCases = []TestCase{
|
||||
Name: "TestB",
|
||||
Time: 300,
|
||||
Result: parser.PASS,
|
||||
Output: []string{},
|
||||
Output: []string{
|
||||
"coverage: 10% of statements",
|
||||
},
|
||||
},
|
||||
},
|
||||
CoveragePct: "10.0",
|
||||
@ -722,7 +724,9 @@ var testCases = []TestCase{
|
||||
Name: "TestB",
|
||||
Time: 300,
|
||||
Result: parser.PASS,
|
||||
Output: []string{},
|
||||
Output: []string{
|
||||
"coverage: 10% of statements in fmt, encoding/xml",
|
||||
},
|
||||
},
|
||||
},
|
||||
CoveragePct: "10.0",
|
||||
|
@ -41,8 +41,8 @@ type Test struct {
|
||||
|
||||
var (
|
||||
regexStatus = regexp.MustCompile(`^\s*--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+)(?: seconds|s)\)$`)
|
||||
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+(?:\.\d+)?)%\s+of\s+statements(?:\sin\s.+)?$`)
|
||||
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+(?:(\d+\.\d+)s|(\[\w+ failed]))(?:\s+coverage:\s+(\d+(?:\.\d+))%\sof\sstatements(?:\sin\s.+)?)?$`)
|
||||
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+\.\d+)%\s+of\s+statements(?:\sin\s.+)?$`)
|
||||
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+(?:(\d+\.\d+)s|(\[\w+ failed]))(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements(?:\sin\s.+)?)?$`)
|
||||
regexOutput = regexp.MustCompile(`( )*\t(.*)`)
|
||||
regexSummary = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user