45
46
// ReapplyEvents mocks base method.
47
>
func (m *MockEventsReapplier) ReapplyEvents(ctx context.Context, ms interfaces.MutableState, updateRegistry update.Registry, historyEvents []*history.HistoryEvent, runID string) ([]*history.HistoryEvent, error) {
events_reapplier_mock.go
48
>
m.ctrl.T.Helper()
49
>
ret := m.ctrl.Call(m, "ReapplyEvents", ctx, ms, updateRegistry, historyEvents, runID)
50
>
ret0, _ := ret[0].([]*history.HistoryEvent)
51
>
ret1, _ := ret[1].(error)
52
>
return ret0, ret1
53
>
}
54
55
// ReapplyEvents indicates an expected call of ReapplyEvents.