go tool test2json

该命令用于把测试可执行文件转化可读的json格式。

// 生成测试文件的可执行文件
go  test string_concat_test.go -o string_concat.test

go tool test2json ./string_concat.test -test.v

// 输出
{"Action":"output","Output":"testing: warning: no tests to run\n"}
{"Action":"output","Output":"PASS\n"}
{"Action":"pass"}

参考:

https://blog.csdn.net/weixin_33772442/article/details/112098085

最后编辑: kuteng  文档更新时间: 2022-07-29 14:34   作者:kuteng