/// <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; }