C# 클래스 NFluent.EventWaitHandleCheckExtensions

Provides check methods to be executed on a EventWaitHandle instance.
파일 보기 프로젝트 열기: tpierrain/NFluent

공개 메소드들

메소드 설명
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>