mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-07-03 20:52:47 -05:00
@ -520,7 +520,7 @@ var testCases = []TestCase{
|
||||
Name: "package/name/failing1",
|
||||
Tests: []*parser.Test{
|
||||
{
|
||||
Name: "build failed",
|
||||
Name: "[build failed]",
|
||||
Time: 0,
|
||||
Result: parser.FAIL,
|
||||
Output: []string{
|
||||
@ -533,7 +533,7 @@ var testCases = []TestCase{
|
||||
Name: "package/name/failing2",
|
||||
Tests: []*parser.Test{
|
||||
{
|
||||
Name: "build failed",
|
||||
Name: "[build failed]",
|
||||
Time: 0,
|
||||
Result: parser.FAIL,
|
||||
Output: []string{
|
||||
@ -542,6 +542,22 @@ var testCases = []TestCase{
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "package/name/setupfailing1",
|
||||
Tests: []*parser.Test{
|
||||
{
|
||||
Name: "[setup failed]",
|
||||
Time: 0,
|
||||
Result: parser.FAIL,
|
||||
Output: []string{
|
||||
"setupfailing1/failing_test.go:4: cannot find package \"other/package\" in any of:",
|
||||
"\t/path/vendor (vendor tree)",
|
||||
"\t/path/go/root (from $GOROOT)",
|
||||
"\t/path/go/path (from $GOPATH)",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
Reference in New Issue
Block a user