Example #1
0
 public void Update(NotifyCollectionChangedEventArgs instructions)
 {
     _updater.Update(instructions);
 }
Example #2
0
        public void ShouldThrowWhenUpdatingWithNullInstructions()
        {
            var updater = new ListUpdater(new List <int>());

            updater.Update(null);
        }