Delegate InspectValueFn<T>
- Namespace
- Mokkit.Inspect
- Assembly
- Mokkit.dll
Represents a synchronous inspect function that operates on a specific value. This delegate is used for value-based assertions in the Assert phase.
public delegate void InspectValueFn<in T>(T value, ITestHost host)Parameters
valueT-
The value to inspect and assert against.
hostITestHost-
The test host that provides access to configured services and dependencies.
Type Parameters
T-
The type of the value being inspected.