Delegate InspectValueWithContextAsyncFn<T, TContext>
- Namespace
- Mokkit.Inspect
- Assembly
- Mokkit.dll
Represents an asynchronous inspect function that operates on a specific value with additional context. This delegate is used for value-based assertions that require contextual information.
public delegate Task InspectValueWithContextAsyncFn<in T, in TContext>(T value, TContext context, ITestHost host)Parameters
valueT-
The value to inspect and assert against.
contextTContext-
Additional context information for the inspection.
hostITestHost-
The test host that provides access to configured services and dependencies.
Returns
- Task
-
A task representing the asynchronous value inspection operation with context.
Type Parameters
T-
The type of the value being inspected.
TContext-
The type of the context object.