public ConcurrentTestStepWrapper(TestStepBase testStep, Context ctx) { TestStep = testStep; _logger = new Logger(); _logger.ConcurrentExecutionMode = true; _context = ctx.CloneForConcurrentUse(_logger); }
/// <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; }