Created
June 30, 2018 22:38
-
-
Save joebuschmann/0472f10c0943d990c3b561b337bf3848 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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