我的项目中的所有测试

我的项目中的所有测试

本文介绍了如何“去测试"我的项目中的所有测试?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

go test 命令只覆盖一个目录中的 *_test.go 文件.

The go test command covers *_test.go files in only one dir.

我要go test整个项目,这意味着测试应该覆盖目录./中的所有*_test.go文件以及目录 ./.

I want to go test the whole project, which means the test should cover all *_test.go files in the dir ./ and every children tree dir under the dir ./.

执行此操作的命令是什么?

What's the command to do this?

推荐答案

这应该运行当前目录及其所有子目录中的所有测试:

This should run all tests in current directory and all of its subdirectories:

$ go test ./...

这应该为给定的特定目录运行所有测试:

This should run all tests for given specific directories:

$ go test ./tests/... ./unit-tests/... ./my-packages/...

这应该运行所有带有以 foo/ 为前缀的导入路径的测试:

This should run all tests with import path prefixed with foo/:

$ go test foo/...

这应该运行以 foo 为前缀的所有测试导入路径:

This should run all tests import path prefixed with foo:

$ go test foo...

这应该会在您的 $GOPATH 中运行所有测试:

This should run all tests in your $GOPATH:

$ go test ...

这篇关于如何“去测试"我的项目中的所有测试?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 07:45