38
39
// EXPECT returns an object that allows the caller to indicate expected use.
41
>
return m.recorder
42
>
}
43
44
// dispatchForExistingWorkflow mocks base method.
45
>
func (m *MocktransactionMgrForExistingWorkflow) dispatchForExistingWorkflow(ctx context.Context, isWorkflowRebuilt bool, archetypeID chasm.ArchetypeID, targetWorkflow, newWorkflow Workflow) error {
transaction_manager_existing_workflow_mock.go
46
>
m.ctrl.T.Helper()
47
>
ret := m.ctrl.Call(m, "dispatchForExistingWorkflow", ctx, isWorkflowRebuilt, archetypeID, targetWorkflow, newWorkflow)
48
>
ret0, _ := ret[0].(error)
49
>
return ret0
50
>
}
51
52
// dispatchForExistingWorkflow indicates an expected call of dispatchForExistingWorkflow.
54
>
mr.mock.ctrl.T.Helper()
55
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "dispatchForExistingWorkflow", reflect.TypeOf((*MocktransactionMgrForExistingWorkflow)(nil).dispatchForExistingWorkflow), ctx, isWorkflowRebuilt, archetypeID, targetWorkflow, newWorkflow)
56
>
}