Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joebuschmann/0472f10c0943d990c3b561b337bf3848 to your computer and use it in GitHub Desktop.
Save joebuschmann/0472f10c0943d990c3b561b337bf3848 to your computer and use it in GitHub Desktop.
public abstract class Steps
{
// Built-in context
public ScenarioContext ScenarioContext { get; }
public FeatureContext FeatureContext { get; }
public TestThreadContext TestThreadContext { get; }
public ScenarioStepContext StepContext { get; }
// Call other binding steps
public void Given(string step);
public void Given(string step, Table tableArg);
public void Given(string step, string multilineTextArg);
public void Given(string step, string multilineTextArg, Table tableArg);
// Snip
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment