單元測試,是指對軟體中的最小可測試單元進行檢查和驗證
#單元就是人為規定的最小的被測功能模組
#一般來說,要根據實際情況去判定其具體含義,如C 語言中單元指一個函數,Go 裡面也單元也是一個函數
單元測試是在軟體開發過程中要進行的最低級別的測試活動,軟體的獨立單元將在與程式的其他部分相隔離的情況下進行測試。
單元測試,咱們平常也叫它單測,平時開發的時候,也需要寫一些demo 來測試我們的專案中的函數或某個小功能【建議:golang教學】
GO 語言裡面的單元測試,是使用標準函式庫testing
有以下簡單規則:
_test
t *testing.T
寫一個簡單的例子,加入後綴和前綴
.├── cal.go ├── cal_test.go ├── lll └── sub.go
cal.go
package mainfunc Addprefix(str string) string { return "hello_"+str}func Addsuffix(str string) string { return str+"_good"}
cal_test.go
package mainimport "testing"func TestAddprefix(t *testing.T) { Addprefix("xiaomotong")}func TestAddsuffix(t *testing.T) { Addsuffix("xiaomotong")}
#sub. go
package mainfunc MyAdd(a int, b int) int { if a+b > 10{ return 10 } return a+b}func MySub(one int, two int) int{ if one - two <p><strong>sub_test.go</strong></p><pre class="brush:php;toolbar:false">package mainimport "testing"import "fmt"func TestMyAdd(t *testing.T) { num := MyAdd(4 ,9) fmt.Println(num) num = MyAdd(4 ,2) fmt.Println(num)}
執行單元測試
go test -v
-v 是參數會顯示每個用例的測試結果,顯示執行的單測函數,是否通過以及單測的時候
運行結果如下
=== RUN TestAddprefix --- PASS: TestAddprefix (0.00s)=== RUN TestAddsuffix --- PASS: TestAddsuffix (0.00s)=== RUN TestMyAdd 10 6 --- PASS: TestMyAdd (0.00s)PASS ok my_new_first/golang_study/later_learning/gotest 0.002s
在套件目錄下執行go test ,會執行套件裡面所有的單元測試檔
咱們可以這樣用:
go test -run TestMyAdd -v
#結果如下:
=== RUN TestMyAdd 10 6 --- PASS: TestMyAdd (0.00s)PASS ok my_new_first/golang_study/later_learning/gotest 0.002s
sub_test.go
package mainimport "testing"import "fmt"func TestMyAdd(t *testing.T) { num := MyAdd(4 ,9) fmt.Println(num) num = MyAdd(4 ,2) fmt.Println(num)}func TestMySub(t *testing.T) { t.Run("one", func(t *testing.T) { if MySub(2, 3) != 1 { t.Fatal("cal error") } }) t.Run("two", func(t *testing.T) { if MySub(3, 1) != 2 { t.Fatal(" error ") } })}單獨呼叫子測試函數,執行
go test -run TestMySub/one -v
=== RUN TestMySub=== RUN TestMySub/one --- PASS: TestMySub (0.00s) --- PASS: TestMySub/one (0.00s)PASS ok my_new_first/golang_study/later_learning/gotest 0.003s
go test -v -covermode=count -coverprofile=cover.out
在瀏覽器中開啟html 文件,可以查看到如下報告
圖中綠色的部分是已覆蓋,紅色的部分是未覆蓋,咱們的例子已經全部覆蓋具體的函數功能
go test 後面的指令,咱們也可以看幫助文件
很多公司都開始搞效能了,單測,自動化測試,CI/CD 都是要趕緊搞起來的,最好是做成一鍵發布一鍵回滾的。羨慕這些基礎設定都非常完善的地方,哈哈哈~
#以上是一文搞懂GO中的單元測試(unit testing)的詳細內容。更多資訊請關注PHP中文網其他相關文章!