public WaitUntilElement(ActualKeyword actualKeyword, Expression<Func<bool>> expectation, int waitMaxMs, int waitIncrementMs)
     : base(actualKeyword)
 {
     Expectation = expectation;
     WaitMaxMS = waitMaxMs;
     WaitIncrementMS = waitIncrementMs;
 }
 public WaitUntilElement(ActualKeyword actualKeyword, Expression <Func <bool> > expectation, int waitMaxMs, int waitIncrementMs)
     : base(actualKeyword)
 {
     Expectation     = expectation;
     WaitMaxMS       = waitMaxMs;
     WaitIncrementMS = waitIncrementMs;
 }
Example #3
0
 public BeforeEachElementWithoutReturnValue(ActualKeyword beforeEach, Action action)
     : base(beforeEach, delegate()
 {
     action();
     return(ElementResultUnused);
 })
 {
 }
Example #4
0
 public BeforeAllElementWithoutReturnValue(ActualKeyword actualKeyword, Action action)
     : base(actualKeyword, delegate()
 {
     action();
     return(ElementResultUnused);
 })
 {
 }
Example #5
0
 public AfterAllElement(ActualKeyword actualKeyword, Action action)
     : base(actualKeyword)
 {
     Action = action;
 }
Example #6
0
 public ExpectElement(ActualKeyword actualKeyword, Expression<Func<bool>> expectation)
     : base(actualKeyword)
 {
     Expectation = expectation;
 }
Example #7
0
 public ForkElement(ActualKeyword actualKeyword, string description, Action action) : base(actualKeyword)
 {
     Description = description;
     Action      = action;
 }
Example #8
0
 public IgnoreElement(ActualKeyword actualKeyword, string reason) : base(actualKeyword)
 {
     Reason = reason;
 }
Example #9
0
 public AfterAllElement(ActualKeyword actualKeyword, Action action)
     : base(actualKeyword)
 {
     Action = action;
 }
 public SpecificationElement(ActualKeyword actualKeyword)
 {
     ActualKeyword = actualKeyword;
 }
Example #11
0
 public ExpectElement(ActualKeyword actualKeyword, Expression <Func <bool> > expectation)
     : base(actualKeyword)
 {
     Expectation = expectation;
 }
Example #12
0
 public BeforeAllElement(ActualKeyword actualKeyword, Func <T> action)
     : base(actualKeyword)
 {
     Action = action;
 }
Example #13
0
 public TraceElement(ActualKeyword actualKeyword, string message) : base(actualKeyword)
 {
     Message = message;
 }
Example #14
0
 public AfterEachElement(ActualKeyword actualKeyword, Action action) : base(actualKeyword)
 {
     _action = action;
 }
Example #15
0
 public WithCategoryElement(ActualKeyword actualKeyword, string category) : base(actualKeyword)
 {
     Category = category;
 }
Example #16
0
 public AfterEachElement(ActualKeyword actualKeyword, Action action)
     : base(actualKeyword)
 {
     _action = action;
 }
 public SpecificationElement(ActualKeyword actualKeyword)
 {
     ActualKeyword = actualKeyword;
 }
 public LeakDisposableElement(ActualKeyword actualKeyword, IDisposable disposable) : base(actualKeyword)
 {
     Disposable = disposable;
 }
Example #19
0
 public IgnoreElement(ActualKeyword actualKeyword, string reason)
     : base(actualKeyword)
 {
     Reason = reason;
 }
 public WithCategoryElement(ActualKeyword actualKeyword, string category)
     : base(actualKeyword)
 {
     Category = category;
 }
Example #21
0
 public TraceElement(ActualKeyword actualKeyword, string message)
     : base(actualKeyword)
 {
     Message = message;
 }
Example #22
0
 public BeforeEachElement(ActualKeyword beforeEach, Func <T> action)
     : base(beforeEach)
 {
     Action = action;
 }
Example #23
0
 public ForkElement(ActualKeyword actualKeyword, string description, Action action)
     : base(actualKeyword)
 {
     Description = description;
     Action = action;
 }
 public LeakDisposableElement(ActualKeyword actualKeyword, IDisposable disposable)
     : base(actualKeyword)
 {
     Disposable = disposable;
 }