add test for go 1.4 support

This commit is contained in:
Tachikoma
2014-12-22 20:38:28 +08:00
parent a3d66c44af
commit 4aa31fc440
3 changed files with 40 additions and 0 deletions

View File

@ -102,6 +102,32 @@ var testCases []TestCase = []TestCase{
},
},
},
{
name: "04-go_1_4.txt",
reportName: "04-report.xml",
report: &Report{
Packages: []Package{
{
Name: "package/name",
Time: 160,
Tests: []Test{
{
Name: "TestOne",
Time: 60,
Result: PASS,
Output: []string{},
},
{
Name: "TestTwo",
Time: 100,
Result: PASS,
Output: []string{},
},
},
},
},
},
},
}
func TestParser(t *testing.T) {