Table of Contents

Class Inspect

Namespace
Mokkit.Inspect
Assembly
Mokkit.dll

Provides static factory methods for starting inspect operations in the AAA (Arrange-Act-Assert) pattern. This class serves as the entry point for creating inspect chains that perform assertions and verifications.

public static class Inspect

Inheritance

Inherited Members

Methods

Start(TestStage)

Starts a new inspect operation from a test stage.

public static ITestInspect Start(TestStage stage)

Parameters

stage TestStage

The test stage to start the inspect operation from.

Returns

ITestInspect

A new Mokkit.Inspect.ITestInspect instance for chaining inspect operations.

Start(InspectAsyncFn)

Starts a new inspect operation with an asynchronous inspect function.

public static ITestInspect Start(InspectAsyncFn inspectFn)

Parameters

inspectFn InspectAsyncFn

The asynchronous inspect function to start with.

Returns

ITestInspect

A new Mokkit.Inspect.ITestInspect instance for chaining inspect operations.

Start(InspectFn)

Starts a new inspect operation with a synchronous inspect function.

public static ITestInspect Start(InspectFn inspectFn)

Parameters

inspectFn InspectFn

The synchronous inspect function to start with.

Returns

ITestInspect

A new Mokkit.Inspect.ITestInspect instance for chaining inspect operations.