我正在尝试向包中添加一个示例,并通过 运行该示例go test,但是该示例从未运行。
例如,请参阅此要点:https : //gist.github.com/85469ecc65bb5bb85857
要点有example_test.go:
package cow_test
import (
cow "gist.github.com/85469ecc65bb5bb85857"
)
func Example() {
cow.Poke()
}
然而,当我运行这个:
# go test -v example_test.go
testing: warning: no tests to run
PASS
ok command-line-arguments 0.002s
然而,来自 stdlib 的其他包工作得很好:
# cd /usr/lib/go/src/errors
# go test -v example_test.go
=== RUN: Example
--- PASS: Example (0.00s)
PASS
ok command-line-arguments 0.002s
我的例子有什么问题?
慕容3067478
相关分类