跳至主要内容

Go 單元測試的實用套件 stretchr/testify

好比 Node.js 生態圈的 Mocha、Chai、Jest 等等,stretchr/testify 是 Go 生態圈中實用的單元測試套件。

stretchr/testifyGitHub 頁面 可取得此套件的下載連結:

$ go get github.com/stretchr/testify

套件下載後即可在各個測試檔中引用 testify 套件,例如:

import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
)