Ejemplo n.º 1
0
 private static string GetNotMatchingActorMessage(IStoryStep <IMessageActivity> storyStep, IStoryStep <IMessageActivity> performanceStep)
 {
     return(string.Format(
                CultureInfo.InvariantCulture,
                NotMatchingActorMessageFormat,
                storyStep.StepIndex,
                storyStep.Actor,
                performanceStep.Actor));
 }
Ejemplo n.º 2
0
 private static string GetNotCoveredStoryStepMessage(string format, IStoryStep <IMessageActivity> step)
 {
     return(string.Format(CultureInfo.InvariantCulture, format, step?.StepIndex, step?.Actor, step?.Message));
 }