github.com/hyperledger/aries-framework-go@v0.3.2/pkg/internal/gomocks/controller/webnotifier/mocks.gen.go (about) 1 // Code generated by MockGen. DO NOT EDIT. 2 // Source: github.com/hyperledger/aries-framework-go/pkg/controller/webnotifier (interfaces: Notifier) 3 4 // Package mocks is a generated GoMock package. 5 package mocks 6 7 import ( 8 reflect "reflect" 9 10 gomock "github.com/golang/mock/gomock" 11 ) 12 13 // MockNotifier is a mock of Notifier interface. 14 type MockNotifier struct { 15 ctrl *gomock.Controller 16 recorder *MockNotifierMockRecorder 17 } 18 19 // MockNotifierMockRecorder is the mock recorder for MockNotifier. 20 type MockNotifierMockRecorder struct { 21 mock *MockNotifier 22 } 23 24 // NewMockNotifier creates a new mock instance. 25 func NewMockNotifier(ctrl *gomock.Controller) *MockNotifier { 26 mock := &MockNotifier{ctrl: ctrl} 27 mock.recorder = &MockNotifierMockRecorder{mock} 28 return mock 29 } 30 31 // EXPECT returns an object that allows the caller to indicate expected use. 32 func (m *MockNotifier) EXPECT() *MockNotifierMockRecorder { 33 return m.recorder 34 } 35 36 // Notify mocks base method. 37 func (m *MockNotifier) Notify(arg0 string, arg1 []byte) error { 38 m.ctrl.T.Helper() 39 ret := m.ctrl.Call(m, "Notify", arg0, arg1) 40 ret0, _ := ret[0].(error) 41 return ret0 42 } 43 44 // Notify indicates an expected call of Notify. 45 func (mr *MockNotifierMockRecorder) Notify(arg0, arg1 interface{}) *gomock.Call { 46 mr.mock.ctrl.T.Helper() 47 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Notify", reflect.TypeOf((*MockNotifier)(nil).Notify), arg0, arg1) 48 }