Golang : wrong signature for TestMain, must be: func TestMain(m *testing.M) 问题处理

凤修为
2023-12-01

问题出在:测试文件没有引入 testing 包,测试函数没有正确使用。

测试文件的测试函数的正确使用方法:

func TestYdookFunc(m *testing.M) { ... }



 类似资料: