英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论