72
73
// BackfillHistoryEvents mocks base method.
74
>
func (m *MockEngine) BackfillHistoryEvents(ctx context.Context, request *BackfillHistoryEventsRequest) error {
engine_mock.go
75
>
m.ctrl.T.Helper()
76
>
ret := m.ctrl.Call(m, "BackfillHistoryEvents", ctx, request)
77
>
ret0, _ := ret[0].(error)
78
>
return ret0
79
>
}
80
81
// BackfillHistoryEvents indicates an expected call of BackfillHistoryEvents.
82
>
func (mr *MockEngineMockRecorder) BackfillHistoryEvents(ctx, request any) *gomock.Call {
engine_mock.go
83
>
mr.mock.ctrl.T.Helper()
84
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "BackfillHistoryEvents", reflect.TypeOf((*MockEngine)(nil).BackfillHistoryEvents), ctx, request)
85
>
}
86
87
// ConvertReplicationTask mocks base method.