113
114
// GetType mocks base method.
115
>
func (m *MockTask) GetType() enums.TaskType {
task_mock.go
116
>
m.ctrl.T.Helper()
117
>
ret := m.ctrl.Call(m, "GetType")
118
>
ret0, _ := ret[0].(enums.TaskType)
119
>
return ret0
120
>
}
121
122
// GetType indicates an expected call of GetType.
123
>
func (mr *MockTaskMockRecorder) GetType() *gomock.Call {
task_mock.go
124
>
mr.mock.ctrl.T.Helper()
125
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetType", reflect.TypeOf((*MockTask)(nil).GetType))
126
>
}
127
128
// GetVisibilityTime mocks base method.