Table of Contents

Delegate ActAsyncFn

Namespace
Mokkit.Act
Assembly
Mokkit.dll

Represents an asynchronous act function that performs the operation under test. This delegate is used in the Act phase of the AAA (Arrange-Act-Assert) pattern.

public delegate Task ActAsyncFn(ITestHost host)

Parameters

host ITestHost

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

Returns

Task

A task representing the asynchronous act operation.