Accord.Tests.Imaging.ImageToMatrixTest.ImageToMatrixConstructorTest C# (CSharp) Method

ImageToMatrixConstructorTest() private method

private ImageToMatrixConstructorTest ( ) : void
return void
        public void ImageToMatrixConstructorTest()
        {
            double min = -10;
            double max = +10;
            ImageToMatrix target = new ImageToMatrix(min, max);

            Assert.AreEqual(min, target.Min);
            Assert.AreEqual(max, target.Max);
            Assert.AreEqual(0, target.Channel);
        }