2594
2595
// GetPendingTimerInfos mocks base method.
2596
>
func (m *MockMutableState) GetPendingTimerInfos() map[string]*persistence.TimerInfo {
mutable_state_mock.go
2597
>
m.ctrl.T.Helper()
2598
>
ret := m.ctrl.Call(m, "GetPendingTimerInfos")
2599
>
ret0, _ := ret[0].(map[string]*persistence.TimerInfo)
2600
>
return ret0
2601
>
}
2602
2603
// GetPendingTimerInfos indicates an expected call of GetPendingTimerInfos.
2604
>
func (mr *MockMutableStateMockRecorder) GetPendingTimerInfos() *gomock.Call {
mutable_state_mock.go
2605
>
mr.mock.ctrl.T.Helper()
2606
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetPendingTimerInfos", reflect.TypeOf((*MockMutableState)(nil).GetPendingTimerInfos))
2607
>
}
2608
2609
// GetPendingWorkflowTask mocks base method.