58 lines
1.8 KiB
Go
58 lines
1.8 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: galaxy/lobby/internal/ports (interfaces: IntentPublisher)
|
|
//
|
|
// Generated by this command:
|
|
//
|
|
// mockgen -destination=../adapters/mocks/mock_intentpublisher.go -package=mocks galaxy/lobby/internal/ports IntentPublisher
|
|
//
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
package mocks
|
|
|
|
import (
|
|
context "context"
|
|
notificationintent "galaxy/notificationintent"
|
|
reflect "reflect"
|
|
|
|
gomock "go.uber.org/mock/gomock"
|
|
)
|
|
|
|
// MockIntentPublisher is a mock of IntentPublisher interface.
|
|
type MockIntentPublisher struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockIntentPublisherMockRecorder
|
|
isgomock struct{}
|
|
}
|
|
|
|
// MockIntentPublisherMockRecorder is the mock recorder for MockIntentPublisher.
|
|
type MockIntentPublisherMockRecorder struct {
|
|
mock *MockIntentPublisher
|
|
}
|
|
|
|
// NewMockIntentPublisher creates a new mock instance.
|
|
func NewMockIntentPublisher(ctrl *gomock.Controller) *MockIntentPublisher {
|
|
mock := &MockIntentPublisher{ctrl: ctrl}
|
|
mock.recorder = &MockIntentPublisherMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockIntentPublisher) EXPECT() *MockIntentPublisherMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Publish mocks base method.
|
|
func (m *MockIntentPublisher) Publish(ctx context.Context, intent notificationintent.Intent) (string, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Publish", ctx, intent)
|
|
ret0, _ := ret[0].(string)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// Publish indicates an expected call of Publish.
|
|
func (mr *MockIntentPublisherMockRecorder) Publish(ctx, intent any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Publish", reflect.TypeOf((*MockIntentPublisher)(nil).Publish), ctx, intent)
|
|
}
|