Exemplo n.º 1
0
 public TestCase(params int[] items)
 {
     _items   = new List <int>(items);
     _updater = new ListUpdater(_items);
 }
Exemplo n.º 2
0
        public void ShouldThrowWhenUpdatingWithNullInstructions()
        {
            var updater = new ListUpdater(new List <int>());

            updater.Update(null);
        }