2024-01-25 05:51PM
参考:https://freshman.tech/snippets/go/run-specific-test/
https://www.coder.work/article/195897#google_vignette
例如测试A B:
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestA(t *testing.T) {
assert.True(t, true)
}
func TestB(t *testing.T) {
assert.True(t, false)
}
如果都测试使用:
go test
如果仅仅测试其中一个:
go test -run A
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论