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