public void Can_interpret_workflow_cancellation_failed_failed_event()
        {
            _workflow.Setup(w => w.OnWorkflowCancellationFailed(It.IsAny <WorkflowCancellationFailedEvent>())).Returns(_interpretedWorkflowAction);
            var historyEvents = new WorkflowHistoryEvents(new[] { _builder.WorkflowCancellationFailedEvent("cause") });

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

            Assert.That(workflowDecisions, Is.EqualTo(new[] { _expectedWorkflowDecision }));
        }
        public void Setup()
        {
            _builder = new HistoryEventsBuilder();

            _cancellationFailedEvent = new WorkflowCancellationFailedEvent(_builder.WorkflowCancellationFailedEvent("cause"));
        }