C# Класс NFluent.EventWaitHandleCheckExtensions

Provides check methods to be executed on a EventWaitHandle instance.
Показать файл Открыть проект

Открытые методы

Метод Описание
IsNotSetWithin ( this check, double timeOut, TimeUnit timeUnit ) : ICheckLink>

Checks that the event is not set within a given timeout.

IsSetWithin ( this check, double timeOut, TimeUnit timeUnit ) : ICheckLink>

Checks that the event is set within a given timeout.

Описание методов

IsNotSetWithin() публичный статический Метод

Checks that the event is not set within a given timeout.
The event was set before the given timeout.
public static IsNotSetWithin ( this check, double timeOut, TimeUnit timeUnit ) : ICheckLink>
check this The fluent check to be extended.
timeOut double The maximum amount of time before the event should not be set (time unit being specified with the timeUnit parameter).
timeUnit TimeUnit The time unit of the given timeOut.
Результат ICheckLink>

IsSetWithin() публичный статический Метод

Checks that the event is set within a given timeout.
The event was not set before the given timeout.
public static IsSetWithin ( this check, double timeOut, TimeUnit timeUnit ) : ICheckLink>
check this The fluent check to be extended.
timeOut double The maximum amount of time before the event should be set (time unit being specified with the timeUnit parameter).
timeUnit TimeUnit The time unit of the given timeOut.
Результат ICheckLink>