parser/gotest: Add test for go1.5 test output

This commit is contained in:
Joël Stemmer 2018-04-28 00:31:53 +01:00
parent a4e60c8339
commit 73545440ce

View File

@ -123,6 +123,15 @@ var tests = []struct {
{Type: "coverage", CovPct: 99.8},
{Type: "summary", Result: "ok", Name: "package2/bar", Duration: 4200 * time.Millisecond, CovPct: 99.8},
}},
{"11-go_1_5.txt",
[]Event{
{Type: "run_test", Id: 1, Name: "TestOne"},
{Type: "end_test", Id: 1, Name: "TestOne", Result: "PASS", Duration: 20 * time.Millisecond},
{Type: "run_test", Id: 2, Name: "TestTwo"},
{Type: "end_test", Id: 2, Name: "TestTwo", Result: "PASS", Duration: 30 * time.Millisecond},
{Type: "status", Result: "PASS"},
{Type: "summary", Result: "ok", Name: "package/name", Duration: 50 * time.Millisecond},
}},
}
func TestParse(t *testing.T) {