Accord.Tests.Imaging.MatrixToImageTest.MatrixToImageConstructorTest1 C# (CSharp) Method

MatrixToImageConstructorTest1() private method

private MatrixToImageConstructorTest1 ( ) : void
return void
        public void MatrixToImageConstructorTest1()
        {
            double min = -100;
            double max = +100;
            MatrixToImage target = new MatrixToImage(min, max);
            Assert.AreEqual(min, target.Min);
        }