我在这里做错了什么?我只想运行这个ConnectionPoolTest.TestNew,不管我怎么尝试,结果都是“没有测试可运行”。
:go test --check.list *.go |grep Connectio
ConnectionPoolTest.TestNew
:go test --run ConnectionPoolTest *.go
ok command-line-arguments 0.005s [no tests to run]
:go test --run ConnectionPoolTest.TestNew *.go
ok command-line-arguments 0.005s [no tests to run]发布于 2018-01-27 00:25:10
如果你想运行一个特定的测试,你可以像下面这样运行
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 -run B
--- FAIL: TestB (0.00s)
Error Trace: a_test.go:13
Error: Should be true
FAIL
exit status 1
FAIL test 0.004s
$ go test -run A
PASS
ok test 0.003s
shahriar@Kite ~/g/s/test> -run标志
-run regexp
Run only those tests and examples matching the regular expression.
For tests the regular expression is split into smaller ones by
top-level '/', where each must match the corresponding part of a
test's identifier.https://stackoverflow.com/questions/48465080
复制相似问题