Esempio n. 1
0
        public void RemoveGroupReportsNestedGroupUpdate()
        {
            var groupsLab = new GroupsTestLab(this.Persistence);

            groupsLab.DeleteParent();
            Assert.AreEqual(1, groupsLab.UpdateReported, "Remove parent group didnt send child group update.");
        }
Esempio n. 2
0
        public void RemoveGroupUpdatesNestedGroups()
        {
            var groupsLab = new GroupsTestLab(this.Persistence);

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