431
432
// GetWorkflowExecution mocks base method.
433
>
func (m *MockExecutionManager) GetWorkflowExecution(ctx context.Context, request *GetWorkflowExecutionRequest) (*GetWorkflowExecutionResponse, error) {
data_interfaces_mock.go
434
>
m.ctrl.T.Helper()
435
>
ret := m.ctrl.Call(m, "GetWorkflowExecution", ctx, request)
436
>
ret0, _ := ret[0].(*GetWorkflowExecutionResponse)
437
>
ret1, _ := ret[1].(error)
438
>
return ret0, ret1
439
>
}
440
441
// GetWorkflowExecution indicates an expected call of GetWorkflowExecution.
442
>
func (mr *MockExecutionManagerMockRecorder) GetWorkflowExecution(ctx, request any) *gomock.Call {
data_interfaces_mock.go
443
>
mr.mock.ctrl.T.Helper()
444
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWorkflowExecution", reflect.TypeOf((*MockExecutionManager)(nil).GetWorkflowExecution), ctx, request)
445
>
}
446
447
// IsReplicationDLQEmpty mocks base method.