| 20 | func (fapi *fakeAPIResponse) GetPagination() api.Pagination { return fapi.pagination } |
| 21 | |
| 22 | type fakeAPIRequest struct { |
| 23 | res *fakeAPIResponse |
| 24 | http *http.Response |
| 25 | err error |
| 26 | } |
| 27 | |
| 28 | func (fapi *fakeAPIRequest) Page(page int32) *fakeAPIRequest { return fapi } |
| 29 | func (fapi *fakeAPIRequest) PageSize(size int32) *fakeAPIRequest { return fapi } |
nothing calls this directly
no outgoing calls
no test coverage detected