Beispiel #1
0
        private void LogTestCaseFinished(TestStepFinishedEventArgs e)
        {
            var testCase = testCaseFactory.GetTestCase(e.Test);

            var testResult = testResultFactory.BuildTestResult(e.Test, e.TestStepRun, testCase);

            executionRecorder.RecordEnd(testCase, testResult.Outcome);
            executionRecorder.RecordResult(testResult);
        }