コード例 #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
ファイル: Step.cs プロジェクト: jamesfoster/xbehave.net
 public Step(Sdk.Step step)
 {
     this.step = step;
 }
コード例 #7
0
ファイル: Step.cs プロジェクト: thomaslevesque/xbehave.net
 public Step(string text, Func<IStepContext, Task> body, StepType stepType)
 {
     this.step = new StepContext(text, body, stepType).Step;
 }
コード例 #8
0
ファイル: Step.cs プロジェクト: thomaslevesque/xbehave.net
 public Step(string text, Func<Task> body, StepType stepType)
 {
     this.step = CurrentScenario.AddStep(text, body, stepType);
 }
コード例 #9
0
ファイル: Step.cs プロジェクト: thomaslevesque/xbehave.net
 public Step(string text, Action<IStepContext> body, StepType stepType)
 {
     this.step = new StepContext(text, body, stepType).Step;
 }
コード例 #10
0
ファイル: Step.cs プロジェクト: thomaslevesque/xbehave.net
 public Step(string text, Action body, StepType stepType)
 {
     this.step = CurrentScenario.AddStep(text, body, stepType);
 }