Class BddSpec
Represents the specification for the BDD tests pattern.
public static class BddSpec
- Inheritance
-
BddSpec
- Inherited Members
Methods
AfterEach(Action)
Builds the 'AfterEach' step of the test.
public static void AfterEach(Action action)
Parameters
action
ActionThe action.
And(string, Action)
Builds the 'And' step of the test.
public static void And(string description, Action action)
Parameters
BeforeEach(Action)
Builds the 'BeforeEach' step of the test.
public static void BeforeEach(Action action)
Parameters
action
ActionThe action.
Given(string, Action)
Builds the 'Given' step of the test.
public static void Given(string description, Action action)
Parameters
Then(string, Action)
Builds the 'Then' step of the test.
public static void Then(string description, Action action)
Parameters
When(string, Action)
Builds the 'When' step of the test.
public static void When(string description, Action action)