我安装了go并尝试了有关如何编写go代码的第一部分
过了一会儿没看到理想的结果,我注意到去测试总是通过,总是!
我想念什么?
$ 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作为外壳
FFIVE
相关分类