From 73545440ceda1b7a054c0eeae2429b39ca1f9f22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 28 Apr 2018 00:31:53 +0100 Subject: [PATCH] parser/gotest: Add test for go1.5 test output --- pkg/parser/gotest/gotest_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index fb0a49b..5d8a257 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -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) {