public void RemoveGroupReportsNestedGroupUpdate() { var groupsLab = new GroupsTestLab(this.PrimaryPersistence); groupsLab.DeleteParent(); Assert.AreEqual(1, groupsLab.UpdateReported, "Remove parent group didnt send child group update."); }
public void RemoveGroupUpdatesNestedGroups() { var groupsLab = new GroupsTestLab(this.PrimaryPersistence); groupsLab.DeleteParent(); Assert.IsNull(groupsLab.Child.Parent, "Remove parent group didnt update all childs parent relationship."); }