Пример #1
0
 /// --------------------------------------------------------------------
 /// <summary></summary>
 /// --------------------------------------------------------------------
 virtual protected void LogFinalResultsSummary(ReportResultsInfo reportResultsInfo)
 {
     LogComment("");
     LogComment("");
     LogComment("".PadRight(90, '='));
     LogComment("Test started at : " + _DateTimeStart.ToLongTimeString());
     LogComment("Test ended at : " + DateTime.Now.ToLongTimeString());
     LogComment("Total test run time : " + ((TimeSpan)(DateTime.Now - _DateTimeStart)).ToString());
     LogComment("");
     LogComment("TOTAL TESTS: " + _numberOfTests);
     LogComment("TOTAL PASSES: " + _numberOfPasses);
     LogComment("TOTAL VERIFICATION FAILURES: " + _numberOfTestFailures);
     LogComment("TOTAL UNEXPECTED EXCEPTIONS FAILURES: " + _numberOfUnexpectedExceptions);
 }
Пример #2
0
 /// --------------------------------------------------------------------
 /// <summary></summary>
 /// --------------------------------------------------------------------
 virtual protected void LogFinalResultsSummary(ReportResultsInfo reportResultsInfo)
 {
     LogComment("");
     LogComment("");
     LogComment("".PadRight(90, '='));
     LogComment("Test started at : " + _DateTimeStart.ToLongTimeString());
     LogComment("Test ended at : " + DateTime.Now.ToLongTimeString());
     LogComment("Total test run time : " + ((TimeSpan)(DateTime.Now - _DateTimeStart)).ToString());
     LogComment("");
     LogComment("TOTAL TESTS: " + _numberOfTests);
     LogComment("TOTAL PASSES: " + _numberOfPasses);
     LogComment("TOTAL VERIFICATION FAILURES: " + _numberOfTestFailures);
     LogComment("TOTAL UNEXPECTED EXCEPTIONS FAILURES: " + _numberOfUnexpectedExceptions);
 }