Table of Contents

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

value T

The value to inspect and assert against.

host ITestHost

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

Type Parameters

T

The type of the value being inspected.