Class AaaSpec
Represents the specification for the AAA tests pattern.
public static class AaaSpec
- Inheritance
-
AaaSpec
- Inherited Members
Methods
Act(Action)
Builds the 'Act' step of the test.
public static void Act(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
Arrange(Action)
Builds the 'Arrange' step of the test.
public static void Arrange(Action action)
Parameters
action
ActionThe action.
Should(string, Action)
Builds the 'Should' step of the test.
public static void Should(string description, Action action)
Parameters
Teardown(Action)
Builds the 'Teardown' step of the test.
public static void Teardown(Action action)
Parameters
action
ActionThe action.
When(string, Action)
Builds the 'When' step of the test.
public static void When(string description, Action action)