64
65
// CheckWorkflowExists mocks base method.
66
>
func (m *MockTransactionManager) CheckWorkflowExists(ctx context.Context, namespaceID namespace.ID, workflowID, runID string, archetypeID chasm.ArchetypeID) (bool, error) {
transaction_manager_mock.go
67
>
m.ctrl.T.Helper()
68
>
ret := m.ctrl.Call(m, "CheckWorkflowExists", ctx, namespaceID, workflowID, runID, archetypeID)
69
>
ret0, _ := ret[0].(bool)
70
>
ret1, _ := ret[1].(error)
71
>
return ret0, ret1
72
>
}
73
74
// CheckWorkflowExists indicates an expected call of CheckWorkflowExists.
75
>
func (mr *MockTransactionManagerMockRecorder) CheckWorkflowExists(ctx, namespaceID, workflowID, runID, archetypeID any) *gomock.Call {
transaction_manager_mock.go
76
>
mr.mock.ctrl.T.Helper()
77
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CheckWorkflowExists", reflect.TypeOf((*MockTransactionManager)(nil).CheckWorkflowExists), ctx, namespaceID, workflowID, runID, archetypeID)
78
>
}
79
80
// CreateWorkflow mocks base method.