Tmx.TestData.AddTestResultErrorDetail C# (CSharp) Method

AddTestResultErrorDetail() static private method

static private AddTestResultErrorDetail ( Exception detail ) : void
detail System.Exception
return void
        internal static void AddTestResultErrorDetail(Exception detail)
        {
            var testResultDetail = new TestResultDetail();
            
            testResultDetail.AddTestResultDetail(
                TestResultDetailTypes.ErrorRecord,
                detail);
            CurrentTestResult.Details.Add(testResultDetail);
        }