2812
2813
// GetUpdateOutcome mocks base method.
2814
>
func (m *MockMutableState) GetUpdateOutcome(ctx context.Context, updateID string) (*update.Outcome, error) {
mutable_state_mock.go
2815
>
m.ctrl.T.Helper()
2816
>
ret := m.ctrl.Call(m, "GetUpdateOutcome", ctx, updateID)
2817
>
ret0, _ := ret[0].(*update.Outcome)
2818
>
ret1, _ := ret[1].(error)
2819
>
return ret0, ret1
2820
>
}
2821
2822
// GetUpdateOutcome indicates an expected call of GetUpdateOutcome.
2823
>
func (mr *MockMutableStateMockRecorder) GetUpdateOutcome(ctx, updateID any) *gomock.Call {
mutable_state_mock.go
2824
>
mr.mock.ctrl.T.Helper()
2825
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUpdateOutcome", reflect.TypeOf((*MockMutableState)(nil).GetUpdateOutcome), ctx, updateID)
2826
>
}
2827
2828
// GetUserTimerInfo mocks base method.