Ejemplo n.º 1
0
 private static void OnTestSessionEnd(object?sender, TestSessionEnd e)
 {
     Sb.AppendLine(
         $"==== Test session end [{e.EndTime:hh:mm:ss t z}]: Passed: {e.Passed}, Failed: {e.FailedTests}, Skipped: {e.Skipped}, Run Result: {e.TestOutcome} ====\t");
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Invokes the test session end event.
 /// </summary>
 public void OnTestSessionEnd(TestSessionEnd testSessionEnd)
 {
     TestSessionEnd?.Invoke(this, testSessionEnd);
 }