Interface ITestArrangeAwaiter
- Namespace
- Mokkit.Arrange
- Assembly
- Mokkit.dll
Provides an awaiter for arrange operations, enabling async/await support for arrange chains. This interface implements the awaiter pattern to allow direct awaiting of Mokkit.Arrange.ITestArrange instances.
public interface ITestArrangeAwaiter : INotifyCompletionImplements
Properties
IsCompleted
Gets a value indicating whether the arrange operation has completed.
bool IsCompleted { get; }Property Value
Methods
GetResult()
Gets the result of the arrange operation. This method is called when the await completes.
void GetResult()