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 InspectInheritance
Inherited Members
Methods
Start(TestStage)
Starts a new inspect operation from a test stage.
public static ITestInspect Start(TestStage stage)Parameters
stageTestStage-
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
inspectFnInspectAsyncFn-
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
inspectFnInspectFn-
The synchronous inspect function to start with.
Returns
- ITestInspect
-
A new Mokkit.Inspect.ITestInspect instance for chaining inspect operations.