登录
首页 >  Golang >  Go问答

区分 go test 中不同的测试标志

来源:stackoverflow

时间:2024-02-23 11:18:23 484浏览 收藏

珍惜时间,勤奋学习!今天给大家带来《区分 go test 中不同的测试标志》,正文内容主要涉及到等等,如果你正在学习Golang,或者是对Golang有疑问,欢迎大家关注我!后面我会持续更新相关内容的,希望都能帮到正在学习的大家!

问题内容

我计划在 go 中运行我的 cucumber 测试(使用 godog),并且我想出了以下可能的命令来运行我的测试。

有人可以指出这里的差异吗?推荐的方式是什么?每种封面模式的用例是什么?

go test -test.v -test.run ^TestFeatures$ -coverpkg=../... -coverprofile=coverage.out -race

go test -test.v -test.run ^TestFeatures$ -coverpkg=../... -coverprofile=coverage1.out -covermode=set

go test -test.v -test.run ^TestFeatures$ -coverpkg=../... -coverprofile=coverage2.out -covermode=atomic

go test -test.v -test.run ^TestFeatures$ -coverpkg=../... -coverprofile=coverage3.out

go test -test.v -test.run ^TestFeatures$ -coverpkg=../... -coverprofile=coverage4.out

ps:为自己在 go 中成为菜鸟而道歉:)


正确答案


这个问题在 GO 博客上得到了回答:https://go.dev/blog/cover#heat-maps

  • 设置:每个语句是否运行?
  • count:每个语句运行了多少次?
  • 原子:类似于计数,但在并行程序中精确计数

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《区分 go test 中不同的测试标志》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>