93
94
// GetCurrentWorkflowRunID mocks base method.
95
>
func (m *MockTransactionManager) GetCurrentWorkflowRunID(ctx context.Context, namespaceID namespace.ID, workflowID string, archetypeID chasm.ArchetypeID) (string, error) {
transaction_manager_mock.go
96
>
m.ctrl.T.Helper()
97
>
ret := m.ctrl.Call(m, "GetCurrentWorkflowRunID", ctx, namespaceID, workflowID, archetypeID)
98
>
ret0, _ := ret[0].(string)
99
>
ret1, _ := ret[1].(error)
100
>
return ret0, ret1
101
>
}
102
103
// GetCurrentWorkflowRunID indicates an expected call of GetCurrentWorkflowRunID.
104
>
func (mr *MockTransactionManagerMockRecorder) GetCurrentWorkflowRunID(ctx, namespaceID, workflowID, archetypeID any) *gomock.Call {
transaction_manager_mock.go
105
>
mr.mock.ctrl.T.Helper()
106
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCurrentWorkflowRunID", reflect.TypeOf((*MockTransactionManager)(nil).GetCurrentWorkflowRunID), ctx, namespaceID, workflowID, archetypeID)
107
>
}
108
109
// LoadWorkflow mocks base method.