private static StepOutcome ToStepOutcomeOfOutcome(this StepOutcome stepOutcome, Outcome outcome) =>
 new StepOutcome(stepOutcome.Step, outcome, stepOutcome.Text);
 private static Some <string> ToDescription(this StepOutcome stepOutcome, bool hasScenario) =>
 stepOutcome
 .Text
 .WithPrefix(stepOutcome.Step.ToPrefix())
 .WithIndentation(stepOutcome.Step, hasScenario)
 .WithOutcomeDescribed(stepOutcome.Outcome);