Exemplo n.º 1
0
        public void ShouldScrollRight()
        {
            double initialValue = hScrollBar.Value;

            hScrollBar.ScrollRight();
            Assert.AreEqual(true, hScrollBar.Value > initialValue);
        }
Exemplo n.º 2
0
        void ShouldScrollRight()
        {
            double initialValue = hScrollBar.Value;

            hScrollBar.ScrollRight();
            Assert.True(hScrollBar.Value > initialValue);
        }
Exemplo n.º 3
0
        public void ShouldScrollRightTest()
        {
            var initialValue = hScrollBar.Value;

            hScrollBar.ScrollRight();
            Assert.That(hScrollBar.Value, Is.GreaterThan(initialValue));
        }