using System; using System.Collections.Generic; using System.Linq; namespace UnityTest { public class GroupByComparerRenderer : AssertionListRenderer { protected override IEnumerable> GroupResult (IEnumerable assertionComponents) { return assertionComponents.GroupBy (c => c.Action.GetType ()); } protected override string GetStringKey (Type key) { return key.Name; } } }