在Go中测试内部功能

huangapple go评论80阅读模式
英文:

Testing Internals In Go

问题

推荐的Golang测试方法签名格式是:

func TestMxxxx(t *testing.T) {

}

我注意到如果我使用Testmxxxx,测试会被跳过。现在,如果我在一个包中有两个函数,一个名为myFunc(作为私有函数,未导出),另一个是Myfunc(导出的函数)。针对它们各自编写单独的测试方法应该如何处理?

英文:

The recommended golang test method signature format is:

func TestMxxxx(t *testing.T) {

}

I have noticed if I use 'Testmxxxx', it simply skips the tests. Now, if I have two function in a package, one name myFunc (as private, not exported), and another Myfunc(exported). What will be the approach to write separate test method for each of them?

答案1

得分: 3

你可以使用下划线。例如:

func Test_mxxxx(t *testing.T) {
    // ...
}

这样应该可以正常运行。

英文:

You can use underscores. E.g.

func Test_mxxxx(t *testing.T) {
    // ...
}

This should run just fine.

huangapple
  • 本文由 发表于 2015年10月29日 00:22:41
  • 转载请务必保留本文链接:https://go.coder-hub.com/33396333.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定