// Code generated by MockGen. DO NOT EDIT. // Source: edge-infra.dev/pkg/edge/api/types (interfaces: PubSubService) // Package mocks is a generated GoMock package. package mocks import ( context "context" reflect "reflect" gomock "github.com/golang/mock/gomock" ) // MockPubSubService is a mock of PubSubService interface. type MockPubSubService struct { ctrl *gomock.Controller recorder *MockPubSubServiceMockRecorder } // MockPubSubServiceMockRecorder is the mock recorder for MockPubSubService. type MockPubSubServiceMockRecorder struct { mock *MockPubSubService } // NewMockPubSubService creates a new mock instance. func NewMockPubSubService(ctrl *gomock.Controller) *MockPubSubService { mock := &MockPubSubService{ctrl: ctrl} mock.recorder = &MockPubSubServiceMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockPubSubService) EXPECT() *MockPubSubServiceMockRecorder { return m.recorder } // Send mocks base method. func (m *MockPubSubService) Send(arg0 context.Context, arg1 string, arg2 []byte, arg3 map[string]string) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "Send", arg0, arg1, arg2, arg3) ret0, _ := ret[0].(error) return ret0 } // Send indicates an expected call of Send. func (mr *MockPubSubServiceMockRecorder) Send(arg0, arg1, arg2, arg3 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Send", reflect.TypeOf((*MockPubSubService)(nil).Send), arg0, arg1, arg2, arg3) }