问题
- 
    go test 测试单文件依赖问题解决。 go test ./...
- 
    go test 打印输出。 go test -v
- 
    go test 不使用缓存且只使用本地vendor依赖。 go test -v --count=1 --mod=vendor hello_test.go
go test 测试单文件依赖问题解决。
go test ./...
go test 打印输出。
go test -v
go test 不使用缓存且只使用本地vendor依赖。
go test -v --count=1 --mod=vendor hello_test.go
