doujiao0110 2016-11-28 14:31
浏览 77
已采纳

Golang测试声明为变量的函数(testify)

I have a problem firing a function declared as variable in golang with testify.

Test and function both declared in same package.

var testableFunction = func(abc string) string {...}

now i have a different file with unit test calling testableFunction

func TestFunction(t *testing.T){
     ...
     res:=testableFunction("abc")
     ...
}

Calling TestFunction with go test does not fire any exception, but testableFunction is actually never run. Why?

  • 写回答

1条回答 默认 最新

  • duanfu7994 2016-11-28 14:38
    关注

    That's because your testableFunction variable gets assigned somewhere else in your code.

    See this example:

    var testableFunction = func(s string) string {
        return "re: " + s
    }
    

    Test code:

    func TestFunction(t *testing.T) {
        exp := "re: a"
        if got := testableFunction("a"); got != exp {
            t.Errorf("Expected: %q, got: %q", exp, got)
        }
    }
    

    Running go test -cover:

    PASS
    coverage: 100.0% of statements
    ok      play    0.002s
    

    Obviously if a new function value is assigned to testableFunction before the test execution, then the anonymous function used to initialize your variable will not get called by the test.

    To demonstrate, change your test function to this:

    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)
        }
    }
    

    Running go test -cover:

    PASS
    coverage: 0.0% of statements
    ok      play    0.003s
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探