Ejemplo n.º 1
0
        public void CantRemoveElements()
        {
            var list = new ChunkedList <int>();

            list.Add(42);

            Trap.Exception(() => list.Remove(42)).ShouldBeInstanceOf <NotSupportedException>();
        }