https://blog.golang.org/cover
https://golang.org/pkg/testing/
https://golang.org/doc/tutorial/add-a-test
总结:
- 单元测试覆盖率,要求*_test.go和func在同一目录下,否则得不到覆盖率
go test -coverprofile=count.out gitlab.example.com/myapp
go tool cover -func=count.out
https://blog.golang.org/cover
https://golang.org/pkg/testing/
https://golang.org/doc/tutorial/add-a-test
总结:
go test -coverprofile=count.out gitlab.example.com/myapp
go tool cover -func=count.out
本文标题:Go 单元测试相关
本文链接:https://www.haomeiwen.com/subject/gzgngktx.html
网友评论