// Code generated by MockGen. DO NOT EDIT. // Source: git.nochill.in/nochill/hiling_go/db/repository (interfaces: Store) // // Generated by this command: // // mockgen -package mockdb -destination db/mock/store.go git.nochill.in/nochill/hiling_go/db/repository Store // // Package mockdb is a generated GoMock package. package mockdb import ( context "context" reflect "reflect" db "git.nochill.in/nochill/hiling_go/db/repository" pgtype "github.com/jackc/pgx/v5/pgtype" gomock "go.uber.org/mock/gomock" ) // MockStore is a mock of Store interface. type MockStore struct { ctrl *gomock.Controller recorder *MockStoreMockRecorder isgomock struct{} } // MockStoreMockRecorder is the mock recorder for MockStore. type MockStoreMockRecorder struct { mock *MockStore } // NewMockStore creates a new mock instance. func NewMockStore(ctrl *gomock.Controller) *MockStore { mock := &MockStore{ctrl: ctrl} mock.recorder = &MockStoreMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockStore) EXPECT() *MockStoreMockRecorder { return m.recorder } // AddFollowUser mocks base method. func (m *MockStore) AddFollowUser(ctx context.Context, arg db.AddFollowUserParams) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "AddFollowUser", ctx, arg) ret0, _ := ret[0].(error) return ret0 } // AddFollowUser indicates an expected call of AddFollowUser. func (mr *MockStoreMockRecorder) AddFollowUser(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddFollowUser", reflect.TypeOf((*MockStore)(nil).AddFollowUser), ctx, arg) } // CheckIfReviewExists mocks base method. func (m *MockStore) CheckIfReviewExists(ctx context.Context, arg db.CheckIfReviewExistsParams) (int64, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CheckIfReviewExists", ctx, arg) ret0, _ := ret[0].(int64) ret1, _ := ret[1].(error) return ret0, ret1 } // CheckIfReviewExists indicates an expected call of CheckIfReviewExists. func (mr *MockStoreMockRecorder) CheckIfReviewExists(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CheckIfReviewExists", reflect.TypeOf((*MockStore)(nil).CheckIfReviewExists), ctx, arg) } // CreateImage mocks base method. func (m *MockStore) CreateImage(ctx context.Context, arg []db.CreateImageParams) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CreateImage", ctx, arg) ret0, _ := ret[0].(error) return ret0 } // CreateImage indicates an expected call of CreateImage. func (mr *MockStoreMockRecorder) CreateImage(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateImage", reflect.TypeOf((*MockStore)(nil).CreateImage), ctx, arg) } // CreateLocation mocks base method. func (m *MockStore) CreateLocation(ctx context.Context, arg db.CreateLocationParams) (int32, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CreateLocation", ctx, arg) ret0, _ := ret[0].(int32) ret1, _ := ret[1].(error) return ret0, ret1 } // CreateLocation indicates an expected call of CreateLocation. func (mr *MockStoreMockRecorder) CreateLocation(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateLocation", reflect.TypeOf((*MockStore)(nil).CreateLocation), ctx, arg) } // CreateLocationTx mocks base method. func (m *MockStore) CreateLocationTx(ctx context.Context, arg db.CreateLocationTxParams) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CreateLocationTx", ctx, arg) ret0, _ := ret[0].(error) return ret0 } // CreateLocationTx indicates an expected call of CreateLocationTx. func (mr *MockStoreMockRecorder) CreateLocationTx(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateLocationTx", reflect.TypeOf((*MockStore)(nil).CreateLocationTx), ctx, arg) } // CreateNewsEvents mocks base method. func (m *MockStore) CreateNewsEvents(ctx context.Context, arg db.CreateNewsEventsParams) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CreateNewsEvents", ctx, arg) ret0, _ := ret[0].(error) return ret0 } // CreateNewsEvents indicates an expected call of CreateNewsEvents. func (mr *MockStoreMockRecorder) CreateNewsEvents(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateNewsEvents", reflect.TypeOf((*MockStore)(nil).CreateNewsEvents), ctx, arg) } // CreateReview mocks base method. func (m *MockStore) CreateReview(ctx context.Context, arg db.CreateReviewParams) (db.Review, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CreateReview", ctx, arg) ret0, _ := ret[0].(db.Review) ret1, _ := ret[1].(error) return ret0, ret1 } // CreateReview indicates an expected call of CreateReview. func (mr *MockStoreMockRecorder) CreateReview(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateReview", reflect.TypeOf((*MockStore)(nil).CreateReview), ctx, arg) } // CreateSession mocks base method. func (m *MockStore) CreateSession(ctx context.Context, arg db.CreateSessionParams) (db.UserSession, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CreateSession", ctx, arg) ret0, _ := ret[0].(db.UserSession) ret1, _ := ret[1].(error) return ret0, ret1 } // CreateSession indicates an expected call of CreateSession. func (mr *MockStoreMockRecorder) CreateSession(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateSession", reflect.TypeOf((*MockStore)(nil).CreateSession), ctx, arg) } // CreateUser mocks base method. func (m *MockStore) CreateUser(ctx context.Context, arg db.CreateUserParams) (db.User, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "CreateUser", ctx, arg) ret0, _ := ret[0].(db.User) ret1, _ := ret[1].(error) return ret0, ret1 } // CreateUser indicates an expected call of CreateUser. func (mr *MockStoreMockRecorder) CreateUser(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateUser", reflect.TypeOf((*MockStore)(nil).CreateUser), ctx, arg) } // GetCountImageByLocation mocks base method. func (m *MockStore) GetCountImageByLocation(ctx context.Context, imageOf int32) (int64, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetCountImageByLocation", ctx, imageOf) ret0, _ := ret[0].(int64) ret1, _ := ret[1].(error) return ret0, ret1 } // GetCountImageByLocation indicates an expected call of GetCountImageByLocation. func (mr *MockStoreMockRecorder) GetCountImageByLocation(ctx, imageOf any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCountImageByLocation", reflect.TypeOf((*MockStore)(nil).GetCountImageByLocation), ctx, imageOf) } // GetImagesByLocation mocks base method. func (m *MockStore) GetImagesByLocation(ctx context.Context, arg db.GetImagesByLocationParams) ([]db.GetImagesByLocationRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetImagesByLocation", ctx, arg) ret0, _ := ret[0].([]db.GetImagesByLocationRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetImagesByLocation indicates an expected call of GetImagesByLocation. func (mr *MockStoreMockRecorder) GetImagesByLocation(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetImagesByLocation", reflect.TypeOf((*MockStore)(nil).GetImagesByLocation), ctx, arg) } // GetImagesByReview mocks base method. func (m *MockStore) GetImagesByReview(ctx context.Context, reviewID int32) ([]db.GetImagesByReviewRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetImagesByReview", ctx, reviewID) ret0, _ := ret[0].([]db.GetImagesByReviewRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetImagesByReview indicates an expected call of GetImagesByReview. func (mr *MockStoreMockRecorder) GetImagesByReview(ctx, reviewID any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetImagesByReview", reflect.TypeOf((*MockStore)(nil).GetImagesByReview), ctx, reviewID) } // GetListLocationReviews mocks base method. func (m *MockStore) GetListLocationReviews(ctx context.Context, arg db.GetListLocationReviewsParams) ([]db.GetListLocationReviewsRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetListLocationReviews", ctx, arg) ret0, _ := ret[0].([]db.GetListLocationReviewsRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetListLocationReviews indicates an expected call of GetListLocationReviews. func (mr *MockStoreMockRecorder) GetListLocationReviews(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetListLocationReviews", reflect.TypeOf((*MockStore)(nil).GetListLocationReviews), ctx, arg) } // GetListLocations mocks base method. func (m *MockStore) GetListLocations(ctx context.Context) ([]db.Location, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetListLocations", ctx) ret0, _ := ret[0].([]db.Location) ret1, _ := ret[1].(error) return ret0, ret1 } // GetListLocations indicates an expected call of GetListLocations. func (mr *MockStoreMockRecorder) GetListLocations(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetListLocations", reflect.TypeOf((*MockStore)(nil).GetListLocations), ctx) } // GetListProvinces mocks base method. func (m *MockStore) GetListProvinces(ctx context.Context) ([]db.GetListProvincesRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetListProvinces", ctx) ret0, _ := ret[0].([]db.GetListProvincesRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetListProvinces indicates an expected call of GetListProvinces. func (mr *MockStoreMockRecorder) GetListProvinces(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetListProvinces", reflect.TypeOf((*MockStore)(nil).GetListProvinces), ctx) } // GetListRecentLocationsWithRatings mocks base method. func (m *MockStore) GetListRecentLocationsWithRatings(ctx context.Context, arg db.GetListRecentLocationsParams) ([]db.GetListRecentLocationsWithRatingsRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetListRecentLocationsWithRatings", ctx, arg) ret0, _ := ret[0].([]db.GetListRecentLocationsWithRatingsRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetListRecentLocationsWithRatings indicates an expected call of GetListRecentLocationsWithRatings. func (mr *MockStoreMockRecorder) GetListRecentLocationsWithRatings(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetListRecentLocationsWithRatings", reflect.TypeOf((*MockStore)(nil).GetListRecentLocationsWithRatings), ctx, arg) } // GetListRegencies mocks base method. func (m *MockStore) GetListRegencies(ctx context.Context) ([]db.GetListRegenciesRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetListRegencies", ctx) ret0, _ := ret[0].([]db.GetListRegenciesRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetListRegencies indicates an expected call of GetListRegencies. func (mr *MockStoreMockRecorder) GetListRegencies(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetListRegencies", reflect.TypeOf((*MockStore)(nil).GetListRegencies), ctx) } // GetListRegions mocks base method. func (m *MockStore) GetListRegions(ctx context.Context) ([]db.GetListRegionsRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetListRegions", ctx) ret0, _ := ret[0].([]db.GetListRegionsRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetListRegions indicates an expected call of GetListRegions. func (mr *MockStoreMockRecorder) GetListRegions(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetListRegions", reflect.TypeOf((*MockStore)(nil).GetListRegions), ctx) } // GetLocation mocks base method. func (m *MockStore) GetLocation(ctx context.Context, location_id int32) (db.GetLocationRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetLocation", ctx, location_id) ret0, _ := ret[0].(db.GetLocationRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetLocation indicates an expected call of GetLocation. func (mr *MockStoreMockRecorder) GetLocation(ctx, location_id any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetLocation", reflect.TypeOf((*MockStore)(nil).GetLocation), ctx, location_id) } // GetLocationTag mocks base method. func (m *MockStore) GetLocationTag(ctx context.Context, targetID int32) ([]string, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetLocationTag", ctx, targetID) ret0, _ := ret[0].([]string) ret1, _ := ret[1].(error) return ret0, ret1 } // GetLocationTag indicates an expected call of GetLocationTag. func (mr *MockStoreMockRecorder) GetLocationTag(ctx, targetID any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetLocationTag", reflect.TypeOf((*MockStore)(nil).GetLocationTag), ctx, targetID) } // GetNewsEventsList mocks base method. func (m *MockStore) GetNewsEventsList(ctx context.Context, arg db.GetNewsEventsListParams) ([]db.NewsEventRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetNewsEventsList", ctx, arg) ret0, _ := ret[0].([]db.NewsEventRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetNewsEventsList indicates an expected call of GetNewsEventsList. func (mr *MockStoreMockRecorder) GetNewsEventsList(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetNewsEventsList", reflect.TypeOf((*MockStore)(nil).GetNewsEventsList), ctx, arg) } // GetReviewByLocationAndId mocks base method. func (m *MockStore) GetReviewByLocationAndId(ctx context.Context, arg db.GetReviewByLocationAndIdParams) (db.GetReviewByLocationAndId, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetReviewByLocationAndId", ctx, arg) ret0, _ := ret[0].(db.GetReviewByLocationAndId) ret1, _ := ret[1].(error) return ret0, ret1 } // GetReviewByLocationAndId indicates an expected call of GetReviewByLocationAndId. func (mr *MockStoreMockRecorder) GetReviewByLocationAndId(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetReviewByLocationAndId", reflect.TypeOf((*MockStore)(nil).GetReviewByLocationAndId), ctx, arg) } // GetSession mocks base method. func (m *MockStore) GetSession(ctx context.Context, id int32) (db.UserSession, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSession", ctx, id) ret0, _ := ret[0].(db.UserSession) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSession indicates an expected call of GetSession. func (mr *MockStoreMockRecorder) GetSession(ctx, id any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSession", reflect.TypeOf((*MockStore)(nil).GetSession), ctx, id) } // GetTopListLocations mocks base method. func (m *MockStore) GetTopListLocations(ctx context.Context, arg db.GetTopListLocationsParams) ([]db.GetTopListLocationsRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetTopListLocations", ctx, arg) ret0, _ := ret[0].([]db.GetTopListLocationsRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetTopListLocations indicates an expected call of GetTopListLocations. func (mr *MockStoreMockRecorder) GetTopListLocations(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetTopListLocations", reflect.TypeOf((*MockStore)(nil).GetTopListLocations), ctx, arg) } // GetUser mocks base method. func (m *MockStore) GetUser(ctx context.Context, username string) (db.GetUserRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetUser", ctx, username) ret0, _ := ret[0].(db.GetUserRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetUser indicates an expected call of GetUser. func (mr *MockStoreMockRecorder) GetUser(ctx, username any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUser", reflect.TypeOf((*MockStore)(nil).GetUser), ctx, username) } // GetUserReviewByLocation mocks base method. func (m *MockStore) GetUserReviewByLocation(ctx context.Context, arg db.GetUserReviewByLocationParams) (db.GetUserReviewByLocationRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetUserReviewByLocation", ctx, arg) ret0, _ := ret[0].(db.GetUserReviewByLocationRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetUserReviewByLocation indicates an expected call of GetUserReviewByLocation. func (mr *MockStoreMockRecorder) GetUserReviewByLocation(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUserReviewByLocation", reflect.TypeOf((*MockStore)(nil).GetUserReviewByLocation), ctx, arg) } // GetUserStats mocks base method. func (m *MockStore) GetUserStats(ctx context.Context, user_id int32) (db.GetUserStatsRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetUserStats", ctx, user_id) ret0, _ := ret[0].(db.GetUserStatsRow) ret1, _ := ret[1].(error) return ret0, ret1 } // GetUserStats indicates an expected call of GetUserStats. func (mr *MockStoreMockRecorder) GetUserStats(ctx, user_id any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUserStats", reflect.TypeOf((*MockStore)(nil).GetUserStats), ctx, user_id) } // RemoveFollowUser mocks base method. func (m *MockStore) RemoveFollowUser(ctx context.Context, arg db.RemoveFollowUserParams) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "RemoveFollowUser", ctx, arg) ret0, _ := ret[0].(error) return ret0 } // RemoveFollowUser indicates an expected call of RemoveFollowUser. func (mr *MockStoreMockRecorder) RemoveFollowUser(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RemoveFollowUser", reflect.TypeOf((*MockStore)(nil).RemoveFollowUser), ctx, arg) } // UpdateAvatar mocks base method. func (m *MockStore) UpdateAvatar(ctx context.Context, arg db.UpdateAvatarParams) (pgtype.Text, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "UpdateAvatar", ctx, arg) ret0, _ := ret[0].(pgtype.Text) ret1, _ := ret[1].(error) return ret0, ret1 } // UpdateAvatar indicates an expected call of UpdateAvatar. func (mr *MockStoreMockRecorder) UpdateAvatar(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateAvatar", reflect.TypeOf((*MockStore)(nil).UpdateAvatar), ctx, arg) } // UpdateLocationThumbnail mocks base method. func (m *MockStore) UpdateLocationThumbnail(ctx context.Context, arg db.UpdateLocationThumbnailParams) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "UpdateLocationThumbnail", ctx, arg) ret0, _ := ret[0].(error) return ret0 } // UpdateLocationThumbnail indicates an expected call of UpdateLocationThumbnail. func (mr *MockStoreMockRecorder) UpdateLocationThumbnail(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateLocationThumbnail", reflect.TypeOf((*MockStore)(nil).UpdateLocationThumbnail), ctx, arg) } // UpdatePassword mocks base method. func (m *MockStore) UpdatePassword(ctx context.Context, arg db.UpdatePasswordParams) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "UpdatePassword", ctx, arg) ret0, _ := ret[0].(error) return ret0 } // UpdatePassword indicates an expected call of UpdatePassword. func (mr *MockStoreMockRecorder) UpdatePassword(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdatePassword", reflect.TypeOf((*MockStore)(nil).UpdatePassword), ctx, arg) } // UpdateUser mocks base method. func (m *MockStore) UpdateUser(ctx context.Context, arg db.UpdateUserParams) (db.UpdateUserRow, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "UpdateUser", ctx, arg) ret0, _ := ret[0].(db.UpdateUserRow) ret1, _ := ret[1].(error) return ret0, ret1 } // UpdateUser indicates an expected call of UpdateUser. func (mr *MockStoreMockRecorder) UpdateUser(ctx, arg any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateUser", reflect.TypeOf((*MockStore)(nil).UpdateUser), ctx, arg) }