public void Update(NotifyCollectionChangedEventArgs instructions) { _updater.Update(instructions); }
public void ShouldThrowWhenUpdatingWithNullInstructions() { var updater = new ListUpdater(new List <int>()); updater.Update(null); }