如何在功能測試中顯示完整覆蓋
問題:
問題:函數測試執行二進位代碼,為未發現的盲點留出空間。
<code class="go">package main import ( "fmt" "math/rand" "os" "time" ) var exitCode int func Test_main(t *testing.T) { go main() exitCode = <-exitCh } func TestMain(m *testing.M) { m.Run() // can exit because cover profile is already written os.Exit(exitCode) } func main() { rand.Seed(time.Now().UTC().UnixNano()) for { i := rand.Int() fmt.Println(i) if i%3 == 0 { os.Exit(0) } if i%2 == 0 { os.Exit(1) } time.Sleep(time.Second) } }</code>
程式碼片段:
解:
<code class="go">//+build !test package main func main() { os.Exit(doFunc()); }</code>
1.使用建立標籤排除主函數:
go test -c -coverpkg=. -o example -tags test
使用標籤建構:
2.將功能提取到可測試程式碼:避免透過將功能提取到其他類別來測試主函數。使用 func TestMain 控制主執行緒上的程式碼執行。
3.使用模擬:為依賴項建立模擬以隔離特定程式碼路徑並提高可測試性。
4.覆蓋逾時:在測試中加入逾時,以便覆蓋工具有時間在應用程式退出之前寫入設定檔。
<code class="go">func exit(code int) { exitCh <- code time.Sleep(1 * time.Second) // Allow time for coverage data to be written os.Exit(code) }</code>
超時範例:
以上是## 如何實現功能測試的完全覆蓋:彌合程式碼和執行之間的差距?的詳細內容。更多資訊請關注PHP中文網其他相關文章!