1.目錄函數
gotest.go測試
package mytest import ( "errors" ) func Division(a, b float64) (float64, error) { if b == 0 { return 0, errors.New("除數不能爲0") } return a / b, nil }
gotest_test.gospa
package mytest import ( "testing" ) func Test_Division_1(t *testing.T) { if i, e := Division(6, 2); i != 3 || e != nil { //try a unit test on function t.Error("除法函數測試沒經過") // 若是不是如預期的那麼就報錯 } else { t.Log("第一個測試經過了") //記錄一些你指望記錄的信息 } } func Test_Division_2(t *testing.T) { if _, e := Division(6, 0); e == nil { //try a unit test on function t.Error("Division did not work as expected.") // 若是不是如預期的那麼就報錯 } else { t.Log("one test passed.", e) //記錄一些你指望記錄的信息 } }
1. 在目錄下執行 go test 是測試目錄全部以XXX_test.go 結尾的文件。3d
2.測試單個方法 下面2種寫法。code
go test -test.v -test.run="Test_Division_1" -test.count 5
go test -v -run="Test_Division_1" -count 5
3.查看幫助 go test -help
blog