Ejemplo n.º 1
0
 public void Removing_Dirty_Flag_Clears_Removed()
 {
     _list.Add(1);
     _list.ClearChanges();
     _list.RemoveAt(0);
     _list.ClearChanges();
     Assert.IsEmpty(_list.Removed);
 }