示例#1
0
 public Step(Sdk.Step step)
 {
     this.step = step;
 }
示例#2
0
 public Step(string text, Func <Task> body, StepType stepType)
 {
     this.step = CurrentScenario.AddStep(text, body, stepType);
 }
示例#3
0
 public Step(string text, Func <IStepContext, Task> body, StepType stepType)
 {
     this.step = new StepContext(text, body, stepType).Step;
 }
示例#4
0
 public Step(string text, Action body, StepType stepType)
 {
     this.step = CurrentScenario.AddStep(text, body, stepType);
 }
示例#5
0
 public Step(string text, Action <IStepContext> body, StepType stepType)
 {
     this.step = new StepContext(text, body, stepType).Step;
 }
示例#6
0
 public Step(Sdk.Step step)
 {
     this.step = step;
 }
示例#7
0
 public Step(string text, Func<IStepContext, Task> body, StepType stepType)
 {
     this.step = new StepContext(text, body, stepType).Step;
 }
示例#8
0
 public Step(string text, Func<Task> body, StepType stepType)
 {
     this.step = CurrentScenario.AddStep(text, body, stepType);
 }
示例#9
0
 public Step(string text, Action<IStepContext> body, StepType stepType)
 {
     this.step = new StepContext(text, body, stepType).Step;
 }
示例#10
0
 public Step(string text, Action body, StepType stepType)
 {
     this.step = CurrentScenario.AddStep(text, body, stepType);
 }