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

ImageToMatrixConstructorTest2() private method

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

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