Ejemplo n.º 1
0
 public bool Equals(StringStep other)
 {
     if (other == null)
     {
         return(false);
     }
     return((ReferenceEquals(this, other)) || (other.MatchableStep == MatchableStep && other.Source == Source));
 }
Ejemplo n.º 2
0
 public StepResult(StringStep stringStep, Result resultForActionStep)
     : base(resultForActionStep.Message)
 {
     StringStep = stringStep;
     Result     = resultForActionStep;
 }
Ejemplo n.º 3
0
 public void AddStep(StringStep step)
 {
     _steps.Add(step);
 }
Ejemplo n.º 4
0
 public void Pend(string reason)
 {
     StringStep.Pend(reason);
 }