Example #1
0
        /***************************************************/
        /**** Private Methods - Fallback                ****/
        /***************************************************/

        private static ITestInformation NewResultAfterCrashFix(ITestInformation result)
        {
            return(new TestResult
            {
                Description = "PushPullCompare difference",
                Message = $"A previous crash in the reference has been fixed and is now showing warnings for test result information of type " + result.GetType(),
                Status = TestStatus.Warning
            });
        }
Example #2
0
        /***************************************************/
        /**** Private Methods - Fallback                ****/
        /***************************************************/

        private static ITestInformation NoReferenceFound(ITestInformation result)
        {
            return(new TestResult
            {
                Description = "PushPullCompare difference",
                Message = $"No reference results could be found for test result information of type " + result.GetType(),
                Status = oM.Test.TestStatus.Error
            });
        }