Table of Contents

Delegate ArrangeAsyncFn

Namespace
Mokkit.Arrange
Assembly
Mokkit.dll

Represents an asynchronous arrange function that sets up test dependencies and state. This delegate is used in the Arrange phase of the AAA (Arrange-Act-Assert) pattern.

public delegate Task ArrangeAsyncFn(ITestHost host)

Parameters

host ITestHost

The test host that provides access to configured services and dependencies.

Returns

Task

A task representing the asynchronous arrange operation.

Extension Methods