go語言測試test

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

Go語言通過testing包提供自動化測試功能。包內測試只要運行命令 go test,就能自動運行符合規則的測試函數。
Go語言測試約定規則
1.一般測試func TestXxx(*testing.T)
測試行必須Test開頭,Xxx為字串,第一個X必須大寫的[A-Z]的字幕
為了測試方法和被測試方法的可讀性,一般Xxx為被測試方法的函數名。

2.效能測試func BenchmarkXxx(*testing.B)
效能測試用Benchmark標記,Xxx同上。

3.測試檔案名約定
go語言測試檔案名約定規則是必須以_test.go結尾,放在相同包下,為了方便代碼閱讀,一般go源碼檔案加上_test
比如源檔案my.go 那麼測試檔案如果交your_test.go,her_test.go,my_test.go都可以,不過最好的還是my_test.go,方便閱讀

舉例,源檔案my.go

package myfunc add(x, y int) int {return x + y}

 建立一個my_test.go檔案,需要引入testing

package myimport "testing"func TestAdd(t *testing.T) {if add(1, 2) != 3 {t.Error("test foo:Addr failed")} else {t.Log("test foo:Addr pass")}}func BenchmarkAdd(b *testing.B) {// 如果需要初始化,比較耗時的操作可以這樣:// b.StopTimer()// .... 一堆操作// b.StartTimer()for i := 0; i < b.N; i++ {add(1, 2)}}

 運行測試 go test,輸出:

PASS

ok github.com/my 0.010s
要運行效能測試,執行命令
go test -test.bench=".*"
輸出
PASS
BenchmarkAdd 2000000000 0.72 ns/op
ok github.com/my 1.528s

更多測試命名,用go help test
go的測試是不是很好很強大!^_^

文章出處: http://blog.gcove.net/go%E8%AF%AD%E8%A8%80%E6%B5%8B%E8%AF%95test.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.