Ejemplo n.º 1
0
        public void ThreshholdingTest1()
        {
            Page          target   = new Page();
            Threshholding expected = Threshholding.None;
            Threshholding actual;

            actual = target.Threshholding;
            Assert.Equal(expected, actual);
        }
Ejemplo n.º 2
0
        public void ThreshholdingTest()
        {
            Page          target   = new Page();
            Threshholding expected = new Threshholding();
            Threshholding actual;

            target.Threshholding = expected;
            actual = target.Threshholding;
            Assert.Equal(expected, actual);
        }