Beispiel #1
0
 /// <summary>
 /// Aggregates the current results with the other results.
 /// </summary>
 /// <param name="other">The other result.</param>
 public void Aggregate(Xunit1RunSummary other)
 {
     Total    += other.Total;
     Failed   += other.Failed;
     Skipped  += other.Skipped;
     Time     += other.Time;
     Continue &= other.Continue;
 }
Beispiel #2
0
 /// <summary>
 /// Aggregates the current results with the other results.
 /// </summary>
 /// <param name="other">The other result.</param>
 public void Aggregate(Xunit1RunSummary other)
 {
     Total += other.Total;
     Failed += other.Failed;
     Skipped += other.Skipped;
     Time += other.Time;
     Continue &= other.Continue;
 }