Table of Contents

Delegate InspectScopeAsyncFn

Namespace
Mokkit.Inspect
Assembly
Mokkit.dll

Represents an asynchronous inspect function that operates within a scope and can execute inner functions. This delegate allows for complex inspection scenarios with nested operations.

public delegate Task InspectScopeAsyncFn(ITestHost host, Func<Task> executeInnerFns)

Parameters

host ITestHost

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

executeInnerFns Func<Task>

A function that executes inner inspection operations within the current scope.

Returns

Task

A task representing the asynchronous scoped inspect operation.