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

SortedMaxSizedContainerRemoveExistentItem() private method

private SortedMaxSizedContainerRemoveExistentItem ( ) : void
return void
        public void SortedMaxSizedContainerRemoveExistentItem()
        {
            SortedMaxSizedContainer<int> container = new SortedMaxSizedContainer<int>(5) { 7, 6, 5, 4, 3, 2, 1 };

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