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