Ejemplo n.º 1
0
 public IThenFragment And(string step, Action implementation)
 {
     _builder.AddStepAndExecute(ScenarioFragment.Then, step, implementation);
     return(this);
 }
Ejemplo n.º 2
0
 public IGivenFragment Given(string step, Action implementation)
 {
     _builder.AddStepAndExecute(ScenarioFragment.Given, step, implementation);
     return(new GivenFragment(_builder));
 }