示例#1
0
 /// <summary>
 /// Adds step to test flow.
 /// </summary>
 /// <param name="step">Test step.</param>
 /// <returns>Test flow with added step.</returns>
 public SubdomainTestFlow <TState> With(ITestFlowStep <TState> step)
 {
     steps.Add(step);
     return(this);
 }
示例#2
0
 /// <summary>
 /// Adds step to test flow.
 /// </summary>
 /// <param name="step">Test step.</param>
 /// <returns>Test flow with added step.</returns>
 public SubdomainTestFlow With(ITestFlowStep step)
 {
     steps.Add(step);
     return(this);
 }