Arrays.Arrays.ArrayLength C# (CSharp) Method

ArrayLength() private method

private ArrayLength ( ) : void
return void
        public void ArrayLength()
        {
            int[] IntArray = new int[5];
            const int expectedLength = 5;

            Assert.AreEqual(IntArray.Length, expectedLength);
        }