Beispiel #1
0
 public ConcurrentTestStepWrapper(TestStepBase testStep, Context ctx)
 {
     TestStep = testStep;
     _logger  = new Logger();
     _logger.ConcurrentExecutionMode = true;
     _context = ctx.CloneForConcurrentUse(_logger);
 }
Beispiel #2
0
 /// <summary>
 /// TestStepExecutionException constructor.
 /// </summary>
 /// <param name="message">The message associated with this exception.</param>
 /// <param name="testStep">The name of the BizUnit test step being validated.</param>
 public StepValidationException(string message, TestStepBase testStep)
     : base(message)
 {
     _testStep = testStep;
 }