73
74
// Query mocks base method.
75
>
func (m *MockClient) Query(ctx context.Context, URI archiver.URI, fileNamePrefix string) ([]string, error) {
client_mock.go
76
>
m.ctrl.T.Helper()
77
>
ret := m.ctrl.Call(m, "Query", ctx, URI, fileNamePrefix)
78
>
ret0, _ := ret[0].([]string)
79
>
ret1, _ := ret[1].(error)
80
>
return ret0, ret1
81
>
}
82
83
// Query indicates an expected call of Query.
84
>
func (mr *MockClientMockRecorder) Query(ctx, URI, fileNamePrefix any) *gomock.Call {
client_mock.go
85
>
mr.mock.ctrl.T.Helper()
86
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Query", reflect.TypeOf((*MockClient)(nil).Query), ctx, URI, fileNamePrefix)
87
>
}
88
89
// QueryWithFilters mocks base method.