Test cases for go and appengine
I am using Go and appengine, and now I would like to do some test cases. I tried using gos standard test package, Files (both "package hello"): hello/http.go hello/http_test.go Problem: I cannot run go test hello . The closest I have got is go test hello/http_test.go which works if I do not make any calls to http.go , which is quite pointless. :) An interesting development: as of 1.8.6 using service stubs for testing has been integrated into the SDK through the "appengine/aetest" package. This works largely like the above via a "testing" context. More info github.com/mzimmerman