gotest2html:从go测试输出中创建简约html报告的实用程序

时间:2024-04-24 11:48:11
【文件属性】:

文件名称:gotest2html:从go测试输出中创建简约html报告的实用程序

文件大小:7KB

文件格式:ZIP

更新时间:2024-04-24 11:48:11

Go

gotest2html 一个实用程序,用于从go test -json输出中为失败的测试用例创建一个简约的html报告 建造 克隆仓库 运行go build (可选)为方便起见,我建议将二进制文件的路径添加到PATH变量中 用法 您可以从文件生成报告: $ go test -json > results $ gotest2html results 或者在Linux(我想是Mac)上,直接通过go test -json传递输出: $ go test -json | gotest2html $ go test -json | gotest2html完成后,将在当前目录中创建文件夹“ reports”。 该文件夹将包含两个文件:“ report_failed.html”和“ styles.css”。 在浏览器中打开的报告将如下所示: “总计”字段包括主要测试( func Test...


【文件预览】:
gotest2html-main
----go.mod(53B)
----custom_types()
--------cases.go(723B)
----conversions()
--------tojson.go(1KB)
--------tostructs.go(2KB)
--------tohtml.go(2KB)
----LICENSE(1KB)
----main.go(499B)
----README.md(1KB)
----generation()
--------static.go(2KB)

网友评论