这篇文章主要介绍了Go语言中的单元测试实例分析的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Go语言中的单元测试实例分析文章都会有所收获,下面我们一起来看看吧。
前置条件
Go语言内置了单元测试执行的指令,由于尚未使用Go Modules方法,我们仍然要设置环境变量,才能正确进行测试
export GO111MODULE=off go test
代码
假设我们对以下函数进行测试
package even func Even(i int) bool { return i % 2 == 0 }
单元测试建立步骤
创建一个单元测试,包括如下步骤:
在相同目录下创建一个名为*_test.go的文件
执行go test进行测试,将自动识别这些文件
引入testing包
每一个Case的命名都是以func TestXxx(t *testing.T)
编写单元测试
这里分别对两种场景进行测试,一种是为偶数的情况,一种是为奇数的情况,来检查我们的程序是否按照预期返回,如果不是则抛出异常信息
package even import "testing" func TestEven(t *testing.T) { if !Even(2) { t.Log("2 should be even!") t.Fail() } } func TestNotEven(t *testing.T) { if Even(3) { t.Log("3 should not be even!") t.Fail() } }
执行go test后
PASS
ok _/root/workspace/go/test_unittest 0.003s
func (t *T) Fail() 让测试失败,同一个测试用例中的测试继续执行,后续的测试也会继续执行
package even import "testing" func TestTestingFail(t *testing.T) { // Let create a fake case, we will call FailNow if Even(2) { t.Log("All test cases after Fail will still run") t.Fail() } if Even(2) { t.Log("The test after Fail will still run") t.Fail() } } func TestAfterFailCase(t *testing.T) { if Even(2) { t.Log("This test case after Fail will still run") t.Fail() } }
执行测试后,TestTestingFail中的第二部分也可以继续执行。
--- FAIL: TestTestingFail (0.00s)
even_fail_test.go:8: All test cases after Fail will still run
even_fail_test.go:13: The test after Fail will still run
--- FAIL: TestAfterFailCase (0.00s)
even_fail_test.go:20: This test case after Fail will still run
FAIL
exit status 1
FAIL _/root/workspace/go/test_unittest 0.004s
func (t *T) FailNow() 让测试失败,同一个测试用例中的测试不再执行,后续的测试也会继续执行
package even import "testing" func TestTestingFailNow(t *testing.T) { // Let create a fake case, we will call FailNow if Even(2) { t.Log("All test cases after FailNow will not run") t.FailNow() } if Even(2) { t.Log("The test after FailNow will be skipped") t.FailNow() } } func TestAfterFailNowCase(t *testing.T) { if Even(2) { t.Log("This test case after FailNow will still run") t.FailNow() } }
执行后TestTestingFailNow中的第二段测试不再执行,而后面的TestAfterFailNowCase继续执行
--- FAIL: TestTestingFailNow (0.00s)
even_failnow_test.go:8: All test cases after FailNow will not run
--- FAIL: TestAfterFailNowCase (0.00s)
even_failnow_test.go:20: This test case after FailNow will still run
FAIL
exit status 1
FAIL _/root/workspace/go/test_unittest 0.003s
func (t *T) Log(args …interface{}) 使用默认格式记录日志,等同于Print(),记录错误日志
func (t *T) Fatal(args …interface{}) 与Log功能相似,但是输出日志后会调用FailNow
package even import "testing" func TestTestingFatal(t *testing.T) { // Let create a fake case, we will call FailNow if Even(2) { t.Fatal("All test cases after FailNow will not run") } if Even(2) { t.Fatal("The test after Fatal will not run") } } func TestAfterFatalCase(t *testing.T) { if Even(2) { t.Fatal("This test case after Fatal will still run") } }
Fatal的执行过程与FailNow相似
--- FAIL: TestTestingFatal (0.00s)
even_fatal_test.go:8: All test cases after FailNow will not run
--- FAIL: TestAfterFatalCase (0.00s)
even_fatal_test.go:18: This test case after Fatal will still run
FAIL
exit status 1
FAIL _/root/workspace/go/test_unittest 0.005s
关于“Go语言中的单元测试实例分析”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Go语言中的单元测试实例分析”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。