英文:
Check tests compile without running them or creating a binary
问题
使用Go语言,我如何检查我的测试代码是否能够编译通过,而不生成任何二进制文件或执行测试?
这相当于go build ./...
的测试版本,它可以忽略测试。
英文:
How with Go can I check that my tests compile without creating any binaries or executing the tests?
The test equivalent of go build ./...
, which does this but ignores tests.
答案1
得分: 5
我使用任何不匹配的正则表达式作为运行标志,例如
go test -run NONE ./...
英文:
I use any non-matching regex for the run flag, like
go test -run NONE ./...
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论