美文网首页
Go 单元测试相关

Go 单元测试相关

作者: 埃尔温薛定谔不养猫 | 来源:发表于2020-12-16 14:43 被阅读0次

    https://blog.golang.org/cover
    https://golang.org/pkg/testing/
    https://golang.org/doc/tutorial/add-a-test

    总结:

    1. 单元测试覆盖率,要求*_test.go和func在同一目录下,否则得不到覆盖率
     go test -coverprofile=count.out gitlab.example.com/myapp
     go tool cover -func=count.out
    

    相关文章

      网友评论

          本文标题:Go 单元测试相关

          本文链接:https://www.haomeiwen.com/subject/gzgngktx.html