void _execution_OnTestStepCompleted(object sender, TestStepCompletedEventArgs args)
 {
 }
Пример #2
0
        void _execution_OnTestStepCompleted(object sender, TestStepCompletedEventArgs args)
        {
            var currentStep = this.TestSteps.Where(s => s.Order == args.StepResult.TestId).First();

            currentStep.StepStatus = args.StepResult.Passed ? TestStepStatus.PASSED : TestStepStatus.FAILED;
        }