You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using UnityEngine; |
|
|
|
namespace UnityTest |
|
{ |
|
public class GroupByTestsRenderer : AssertionListRenderer<GameObject> |
|
{ |
|
protected override IEnumerable<IGrouping<GameObject, AssertionComponent>> GroupResult(IEnumerable<AssertionComponent> assertionComponents) |
|
{ |
|
return assertionComponents.GroupBy(c => |
|
{ |
|
var temp = c.transform; |
|
while (temp != null) |
|
{ |
|
if (temp.GetComponent("TestComponent") != null) return c.gameObject; |
|
temp = temp.parent.transform; |
|
} |
|
return null; |
|
}); |
|
} |
|
|
|
protected override string GetFoldoutDisplayName(GameObject key) |
|
{ |
|
return key.name; |
|
} |
|
} |
|
}
|
|
|