Table of Contents

Delegate InspectValueAsyncFn<T>

Namespace
Mokkit.Inspect
Assembly
Mokkit.dll

Represents an asynchronous inspect function that operates on a specific value. This delegate is used for value-based assertions in the Assert phase.

public delegate Task InspectValueAsyncFn<in T>(T value, ITestHost host)

Parameters

value T

The value to inspect and assert against.

host ITestHost

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

Returns

Task

A task representing the asynchronous value inspection operation.

Type Parameters

T

The type of the value being inspected.