Go-Testing golang 測試案例

劍塵發表於2018-10-13

https://studygolang.com/articles/8089

Go的自動化測試框架比JUnit、PyUnit等更加輕量級。要點如下:

  • 測試程式碼以xxx_test.go方式命名
  • 測試程式碼中import “testing”
  • 測試函式形如 func Testxyz(t *Testing.T) {…}
  • 執行測試:go test

    首先建立一個 mymath package
    sqrt.go
    file
    sqrt_test.go
    file

    file

    錯誤的情況
    file
    測試用例全部通過的情況
    file

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章