| 9 | ) |
| 10 | |
| 11 | type stubBatchPricingClient struct { |
| 12 | lastRequest api.BatchPricingRequest |
| 13 | response *api.BatchPricingApiResponse |
| 14 | err error |
| 15 | } |
| 16 | |
| 17 | func (s *stubBatchPricingClient) FetchPricingBatch(req api.BatchPricingRequest) (*api.BatchPricingApiResponse, error) { |
| 18 | s.lastRequest = req |
nothing calls this directly
no outgoing calls
no test coverage detected