feat: generate html reports for API testing #74

This commit is contained in:
xucong053
2022-02-07 20:29:10 +08:00
parent 2a81a4a04a
commit 9415a7bb95
16 changed files with 506 additions and 42 deletions

View File

@@ -120,3 +120,11 @@ func TestInitRendezvous(t *testing.T) {
}
}
}
func TestGenHTMLReport(t *testing.T) {
summary := newOutSummary()
err := genHTMLReport(summary)
if err != nil {
t.Error(err)
}
}