目录结构是:
src src/pkg src/pkg/t1.go src/pkg/t1_test.go
t1.go
package pkg
import (
"fmt"
)
func SayHI(){
fmt.Println("this is t1")
}
Run Code Online (Sandbox Code Playgroud)
t1_test.go
package pkg
import (
"testing"
)
func TestXYZ(t *testing.T) {
SayHI()
}
Run Code Online (Sandbox Code Playgroud)
从dir src/pkg命令行调用go test
去测试t1_test.go
错误:./ t1_test.go:8:undefined:SayHI FAIL命令行参数[build failed]
但功能就在那里
谢谢你的任何提示
zzz*_*zzz 48
它按预期工作.
jnml@fsc-r630:~/src/pkg$ go help test
usage: go test [-c] [-i] [build flags] [packages] [flags for test binary]
'Go test' automates testing the packages named by the import paths.
It prints a summary of the test results in the format:
ok archive/tar 0.011s
FAIL archive/zip 0.022s
ok compress/gzip 0.033s
...
followed by detailed output for each failed package.
'Go test' recompiles each package along with any files with names matching
the file pattern "*_test.go". These additional files can contain test functions,
benchmark functions, and example functions. See 'go help testfunc' for more.
By default, go test needs no arguments. It compiles and tests the package
with source in the current directory, including tests, and runs the tests.
The package is built in a temporary directory so it does not interfere with the
non-test installation.
In addition to the build flags, the flags handled by 'go test' itself are:
-c Compile the test binary to pkg.test but do not run it.
-i
Install packages that are dependencies of the test.
Do not run the test.
The test binary also accepts flags that control execution of the test; these
flags are also accessible by 'go test'. See 'go help testflag' for details.
For more about build flags, see 'go help build'.
For more about specifying packages, see 'go help packages'.
See also: go build, go vet.
jnml@fsc-r630:~/src/pkg$
Run Code Online (Sandbox Code Playgroud)
IOW:
go test 没关系.go test pkg (假设$ GOPATH是〜并且包在〜/ src/pkg中)是可以的.go test whatever_test.go不合适,因为上面没有提供支持.要选择要运行的测试,请使用-run RE标志(RE是正则表达式,解释为*RE*).例如
$ go test -run Say # from within the package's directory
Run Code Online (Sandbox Code Playgroud)
要么
$ go test -run Say my/package/import/path # from anywhere
Run Code Online (Sandbox Code Playgroud)
这在Golang中有点奇怪。老实说,我花了一些时间才找到出路。
一个简单的解决方法是将它们包括在命令中,例如:
go test src/pkg/t1.go src/pkg/t1_test.go
恕我直言,最好的方法是保持清洁。因此,每个测试文件应避免将多个文件作为依赖项。如果您将+1文件用作依赖项,请考虑使用一个_test程序包创建黑盒测试,并且不要使用任何lowerCase内部变量。
这将避免您在日常测试中不得不处理复杂的依赖项。
| 归档时间: |
|
| 查看次数: |
26243 次 |
| 最近记录: |