12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Code generated by MockGen. DO NOT EDIT.
- // Source: internal/repository/repository.go
- // Package mock_repository is a generated GoMock package.
- package mock_repository
- import (
- context "context"
- reflect "reflect"
- gomock "github.com/golang/mock/gomock"
- )
- // MockTransaction is a mock of Transaction interface.
- type MockTransaction struct {
- ctrl *gomock.Controller
- recorder *MockTransactionMockRecorder
- }
- // MockTransactionMockRecorder is the mock recorder for MockTransaction.
- type MockTransactionMockRecorder struct {
- mock *MockTransaction
- }
- // NewMockTransaction creates a new mock instance.
- func NewMockTransaction(ctrl *gomock.Controller) *MockTransaction {
- mock := &MockTransaction{ctrl: ctrl}
- mock.recorder = &MockTransactionMockRecorder{mock}
- return mock
- }
- // EXPECT returns an object that allows the caller to indicate expected use.
- func (m *MockTransaction) EXPECT() *MockTransactionMockRecorder {
- return m.recorder
- }
- // Transaction mocks base method.
- func (m *MockTransaction) Transaction(ctx context.Context, fn func(context.Context) error) error {
- m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "Transaction", ctx, fn)
- ret0, _ := ret[0].(error)
- return ret0
- }
- // Transaction indicates an expected call of Transaction.
- func (mr *MockTransactionMockRecorder) Transaction(ctx, fn interface{}) *gomock.Call {
- mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Transaction", reflect.TypeOf((*MockTransaction)(nil).Transaction), ctx, fn)
- }
|