Hello,
I am using the xunit runner to create groups to test against our application. Am I missing somthing in the xru file. Here is my code
//Group Elements
public static Group GroupElements(IList<ElementId> e)
{
Group group = null;
//UiContext.Send(x => Uiapp.ActiveUIDocument.Selection.SetElementIds(e), null);
UiContext.Send(x => group = Uiapp.ActiveUIDocument.Document.Create.NewGroup(e), null);
return group;
}