58
59
// Get mocks base method.
60
>
func (m *MockClient) Get(ctx context.Context, URI archiver.URI, file string) ([]byte, error) {
client_mock.go
61
>
m.ctrl.T.Helper()
62
>
ret := m.ctrl.Call(m, "Get", ctx, URI, file)
63
>
ret0, _ := ret[0].([]byte)
64
>
ret1, _ := ret[1].(error)
65
>
return ret0, ret1
66
>
}
67
68
// Get indicates an expected call of Get.
69
>
func (mr *MockClientMockRecorder) Get(ctx, URI, file any) *gomock.Call {
client_mock.go
70
>
mr.mock.ctrl.T.Helper()
71
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockClient)(nil).Get), ctx, URI, file)
72
>
}
73
74
// Query mocks base method.