Go の go test コマンドは、以下を含む柔軟なテスト ケース メカニズムを提供します: 命名規則: Test<関数名>、パラメーターは *testing.T アサーション: 期待値と実際の値が一致しているかどうかを検証します。 t.Equal() および t.Error() サブテスト: 大きなテスト ケースを小さな部分に分割し、t.Run() を使用してテーブル テストを作成します: 表形式のデータでテスト ケースを実行し、t.RunTable() を使用して実用的なケースを作成します。 go test を使用したデモ Web サービスのテスト
Go では、go test を使用したテスト
コマンドはコードの正確さと信頼性を保証します。そのパワーは、柔軟で拡張可能なテスト ケース メカニズムから得られます。
テスト ケース関数の命名規則は、Test
の形式に従います。各テスト ケース関数には、テスト ステータスやその他の情報を報告する #**testing.T 型パラメーターが必要です。
import "testing" func TestAdd(t *testing.T) { // ... 测试代码 }
: a が b
: a が b
: x が true であることを確認します
: x が false であることを確認します
: err が nil ではないことを確認します
関数を使用してサブテストを作成し、サブテスト名とテスト関数を渡します。 <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:go;toolbar:false;'>func TestMath(t *testing.T) {
t.Run("add", func(t *testing.T) {
// 测试加法的子测试
})
t.Run("subtract", func(t *testing.T) {
// 测试减法的子测试
})
}</pre><div class="contentsignin">ログイン後にコピー</div></div>
表形式テスト
関数を使用してテーブル テストを作成し、テーブル データとテスト関数を渡します。 <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:go;toolbar:false;'>func TestTable(t *testing.T) {
type Input struct {
a, b int
}
tests := []Input{
{1, 2},
{3, 4},
{5, 6},
}
t.RunTable("add", func(t *testing.T, in Input) {
// 测试 add 函数,使用 in.a 和 in.b
}, tests)
}</pre><div class="contentsignin">ログイン後にコピー</div></div>
実践的なケース: Web サービスのテスト
を使用して Web サービスをテストする例を示します: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:go;toolbar:false;'>import (
"net/http"
"net/http/httptest"
"testing"
)
func TestGetProducts(t *testing.T) {
// 创建一个模拟 HTTP 请求
req, err := http.NewRequest("GET", "/api/products", nil)
if err != nil {
t.Fatal(err)
}
// 创建一个响应记录器
rr := httptest.NewRecorder()
// 调用正在测试的处理程序
http.HandlerFunc("/api/products", getProducts).ServeHTTP(rr, req)
// 验证响应的状态码
if status := rr.Code; status != http.StatusOK {
t.Errorf("错误的状态码:%d", status)
}
// 验证响应 body
expected := `{"products": [{"id": 1, "name": "Product 1"}, {"id": 2, "name": "Product 2"}]}`
if body := rr.Body.String(); body != expected {
t.Errorf("错误的响应 body:%s", body)
}
}</pre><div class="contentsignin">ログイン後にコピー</div></div>結論</p> <h3></h3>go test<p> は、さまざまなテスト ケースを作成および管理できる強力なツールです。アサーション、サブテスト、テーブル テストの機能を最大限に活用して、包括的で信頼性の高いテストを作成し、コードの品質と信頼性を向上させることができます。 <code>
以上がgo test を使用してテストケースの謎を探るの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。