mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Add test for skipped tests
This commit is contained in:
parent
0512acf25e
commit
caf696a15d
@ -37,6 +37,16 @@ var tests = []struct {
|
|||||||
{Type: "output", Data: "exit status 1", Indent: 0},
|
{Type: "output", Data: "exit status 1", Indent: 0},
|
||||||
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 151 * time.Millisecond},
|
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 151 * time.Millisecond},
|
||||||
}},
|
}},
|
||||||
|
{"03-skip.txt",
|
||||||
|
[]Event{
|
||||||
|
{Type: "run_test", Id: 1, Name: "TestOne"},
|
||||||
|
{Type: "end_test", Id: 1, Name: "TestOne", Result: "SKIP", Duration: 20 * time.Millisecond},
|
||||||
|
{Type: "output", Data: "file_test.go:11: Skip message", Indent: 1},
|
||||||
|
{Type: "run_test", Id: 2, Name: "TestTwo"},
|
||||||
|
{Type: "end_test", Id: 2, Name: "TestTwo", Result: "PASS", Duration: 130 * time.Millisecond},
|
||||||
|
{Type: "status", Result: "PASS"},
|
||||||
|
{Type: "summary", Result: "ok", Name: "package/name", Duration: 150 * time.Millisecond},
|
||||||
|
}},
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParse(t *testing.T) {
|
func TestParse(t *testing.T) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user