Slide 13
Slide 13 text
ͳΔ΄Ͳʜ؆୯ʹΕ·͢Ͷ
func TestFooAPI(t *testing.T) {
expectedBody, _ := ioutil.ReadFile(“./testdata/foo/get_res.json”)
res, _ := http.Get(endpoint + “/foo”)
gotBody, _ := ioutil.ReadALL(res.Body)
res.Body.Close()
if gotBody != expectedBody {
t.Error(“FooAPI returns wrong body”)
}
}