コード例 #1
0
        public void Can_interpret_workflow_completion_failed_event()
        {
            _workflow.Setup(w => w.OnWorkflowCompletionFailed(It.IsAny <WorkflowCompletionFailedEvent>())).Returns(_interpretedWorkflowAction);
            var historyEvents = new WorkflowHistoryEvents(new[] { _builder.WorkflowCompletionFailureEvent("cause") });

            var workflowDecisions = historyEvents.InterpretNewEventsFor(_workflow.Object);

            Assert.That(workflowDecisions, Is.EqualTo(new[] { _expectedWorkflowDecision }));
        }
コード例 #2
0
        public void Setup()
        {
            _builder = new HistoryEventsBuilder();

            _failedEvent = new WorkflowCompletionFailedEvent(_builder.WorkflowCompletionFailureEvent("cause"));
        }