我安装了 go 并尝试了如何编写 go 代码的第一部分
在一段时间没有看到想要的结果之后,我注意到 go test 总是通过,总是!
我错过了什么?
$ go version
go version go1
$ mkdir -p src/example/math
$ cat >src/example/math/sum_test.go <<.
> package math
>
> import "testing"
>
> func SumTest( t *testing.T ) {
> t.Errorf("ssss %d", 1 )
> }
> .
$ go test example/math
ok example/math 0.044s
我正在使用 windows x64 并且我正在使用 git-bash 作为 shell