Accord.Tests.Math.MatrixTest.SumTest5 C# (CSharp) Method

SumTest5() private method

private SumTest5 ( ) : void
return void
        public void SumTest5()
        {
            int[] value = { 9, -2, 1 };
            int expected = 8;
            int actual = Matrix.Sum(value);
            Assert.AreEqual(expected, actual);
        }
MatrixTest