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

SortedMaxSizedContainerCountIntiallyZero() private method

private SortedMaxSizedContainerCountIntiallyZero ( ) : void
return void
        public void SortedMaxSizedContainerCountIntiallyZero()
        {
            SortedMaxSizedContainer<int> container = new SortedMaxSizedContainer<int>(5);
            Assert.AreEqual(container.Count, 0);
        }