我在使用testify在golang中触发声明为变量的函数时遇到问题。
测试和功能都在同一个包中声明。
var testableFunction = func(abc string) string {...}
现在我有一个不同的文件,单元测试调用testableFunction
func TestFunction(t *testing.T){
...
res:=testableFunction("abc")
...
}
使用go test
调用TestFunction不会触发任何异常,但testableFunction实际上从不运行。为什么呢?
答案 0 :(得分:2)
这是因为您的testableFunction
变量已分配到代码中的其他位置。
见这个例子:
var testableFunction = func(s string) string {
return "re: " + s
}
测试代码:
func TestFunction(t *testing.T) {
exp := "re: a"
if got := testableFunction("a"); got != exp {
t.Errorf("Expected: %q, got: %q", exp, got)
}
}
正在运行go test -cover
:
PASS
coverage: 100.0% of statements
ok play 0.002s
显然,如果在测试执行之前为testableFunction
分配了一个新的函数值,那么用于初始化变量的匿名函数将不会被测试调用。
要演示,请将测试功能更改为:
func TestFunction(t *testing.T) {
testableFunction = func(s string) string { return "re: " + s }
exp := "re: a"
if got := testableFunction("a"); got != exp {
t.Errorf("Expected: %q, got: %q", exp, got)
}
}
正在运行go test -cover
:
PASS
coverage: 0.0% of statements
ok play 0.003s