CSMSL.Tests.Util.Collections.SortedMaxSizedContainerTestFixture.SortedMaxSizedContainerLargeRemove C# (CSharp) Method

SortedMaxSizedContainerLargeRemove() private method

private SortedMaxSizedContainerLargeRemove ( ) : void
return void
        public void SortedMaxSizedContainerLargeRemove()
        {
            SortedMaxSizedContainer<int> container = new SortedMaxSizedContainer<int>(25);
            for (int i = 0; i < 30; i++)
                container.Add(i);

            Assert.IsTrue(container.Remove(17));
        }