(ctx context.Context, path string, testID TestID)
| 461 | } |
| 462 | |
| 463 | func (s *RunService) doGetRunOutput(ctx context.Context, path string, testID TestID) (*RunOutput, error) { |
| 464 | u := s.client.BasePath + path + string(testID) |
| 465 | req, _ := http.NewRequest("GET", u, nil) |
| 466 | var v *RunOutput |
| 467 | err := s.client.do(req, &v) |
| 468 | return v, err |
| 469 | } |
no test coverage detected