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