Table of Contents

Delegate InspectValueWithContextFn<T, TContext>

Namespace
Mokkit.Inspect
Assembly
Mokkit.dll

Represents a synchronous 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 void InspectValueWithContextFn<in T, in TContext>(T value, TContext context, ITestHost host)

Parameters

value T

The value to inspect and assert against.

context TContext

Additional context information for the inspection.

host ITestHost

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

Type Parameters

T

The type of the value being inspected.

TContext

The type of the context object.