(t *testing.T, err error)
| 1324 | } |
| 1325 | |
| 1326 | func checkErr(t *testing.T, err error) { |
| 1327 | if err != nil { |
| 1328 | t.Fatalf("unexpected error: %s", err) |
| 1329 | } |
| 1330 | } |
| 1331 | |
| 1332 | func getStringFromResponse(t *testing.T, r io.Reader) string { |
| 1333 | if r == nil { |
no outgoing calls
no test coverage detected