vscode编译环境配置-golang-2. 单测

  • 指定单个用例测试
go test -v run TestXXX
  • dlv 调试
    需要安装匹配的go版本和delve版本(如go1.18版本、delve1.20版本)
go install github.com/go-delve/delve/cmd/dlv@v1.20.2
dlv test
  • 生成并查询覆盖率
go test -v -cover ./{dir}/... -coverprofile={cov-out-file-path}

go tool cover --html={cov-out-file-path} -o={html-path}

上一篇:StarRocks下载使用说明和基础操作