Class TestArrange
- Namespace
- Mokkit.Arrange
- Assembly
- Mokkit.dll
Internal implementation of Mokkit.Arrange.ITestArrange that manages the execution of arrange functions in the AAA pattern. This class collects and executes arrange functions sequentially during the test arrangement phase.
public class TestArrange : ITestArrangeInheritance
Implements
Inherited Members
Extension Methods
Methods
GetAwaiter()
Gets an awaiter for the arrange instance.
public ITestArrangeAwaiter GetAwaiter()Returns
- ITestArrangeAwaiter
-
The awaiter for the arrange instance.
Then(ArrangeAsyncFn)
Adds an arrange function to the arrange instance.
public ITestArrange Then(ArrangeAsyncFn arrangeFn)Parameters
arrangeFnArrangeAsyncFn-
The arrange function to add to the arrange instance.
Returns
- ITestArrange
-
The arrange instance for method chaining.
Then(ArrangeFn)
Adds an arrange function to the arrange instance.
public ITestArrange Then(ArrangeFn arrangeFn)Parameters
arrangeFnArrangeFn-
The arrange function to add to the arrange instance.
Returns
- ITestArrange
-
The arrange instance for method chaining.