【发布时间】:2012-07-02 10:42:11
【问题描述】:
我正在使用 Go 和 appengine,现在我想做一些测试用例。
我尝试使用 gos 标准测试包, 文件(都是“package hello”):
hello/http.go
hello/http_test.go
问题:我无法运行go test hello。我得到的最接近的是go test hello/http_test.go,如果我不拨打任何电话http.go,它就可以工作,这是毫无意义的。 :)
【问题讨论】:
标签: google-app-engine testing tdd go