// Code generated by MockGen. DO NOT EDIT. // Source: ./internal/model/mongo/comment_model_gen.go // // Generated by this command: // // mockgen -source=./internal/model/mongo/comment_model_gen.go -destination=./internal/mock/model/comment_model_gen.go -package=mock // // Package mock is a generated GoMock package. package mock import ( model "app-cloudep-tweeting-service/internal/model/mongo" context "context" reflect "reflect" mongo "go.mongodb.org/mongo-driver/mongo" gomock "go.uber.org/mock/gomock" ) // MockcommentModel is a mock of commentModel interface. type MockcommentModel struct { ctrl *gomock.Controller recorder *MockcommentModelMockRecorder } // MockcommentModelMockRecorder is the mock recorder for MockcommentModel. type MockcommentModelMockRecorder struct { mock *MockcommentModel } // NewMockcommentModel creates a new mock instance. func NewMockcommentModel(ctrl *gomock.Controller) *MockcommentModel { mock := &MockcommentModel{ctrl: ctrl} mock.recorder = &MockcommentModelMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockcommentModel) EXPECT() *MockcommentModelMockRecorder { return m.recorder } // Delete mocks base method. func (m *MockcommentModel) Delete(ctx context.Context, id string) (int64, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "Delete", ctx, id) ret0, _ := ret[0].(int64) ret1, _ := ret[1].(error) return ret0, ret1 } // Delete indicates an expected call of Delete. func (mr *MockcommentModelMockRecorder) Delete(ctx, id any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Delete", reflect.TypeOf((*MockcommentModel)(nil).Delete), ctx, id) } // FindOne mocks base method. func (m *MockcommentModel) FindOne(ctx context.Context, id string) (*model.Comment, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "FindOne", ctx, id) ret0, _ := ret[0].(*model.Comment) ret1, _ := ret[1].(error) return ret0, ret1 } // FindOne indicates an expected call of FindOne. func (mr *MockcommentModelMockRecorder) FindOne(ctx, id any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FindOne", reflect.TypeOf((*MockcommentModel)(nil).FindOne), ctx, id) } // Insert mocks base method. func (m *MockcommentModel) Insert(ctx context.Context, data *model.Comment) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "Insert", ctx, data) ret0, _ := ret[0].(error) return ret0 } // Insert indicates an expected call of Insert. func (mr *MockcommentModelMockRecorder) Insert(ctx, data any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Insert", reflect.TypeOf((*MockcommentModel)(nil).Insert), ctx, data) } // Update mocks base method. func (m *MockcommentModel) Update(ctx context.Context, data *model.Comment) (*mongo.UpdateResult, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "Update", ctx, data) ret0, _ := ret[0].(*mongo.UpdateResult) ret1, _ := ret[1].(error) return ret0, ret1 } // Update indicates an expected call of Update. func (mr *MockcommentModelMockRecorder) Update(ctx, data any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Update", reflect.TypeOf((*MockcommentModel)(nil).Update), ctx, data) }