예제 #1
0
        public void ShouldScrollRight()
        {
            double initialValue = hScrollBar.Value;

            hScrollBar.ScrollRight();
            Assert.AreEqual(true, hScrollBar.Value > initialValue);
        }
예제 #2
0
        void ShouldScrollRight()
        {
            double initialValue = hScrollBar.Value;

            hScrollBar.ScrollRight();
            Assert.True(hScrollBar.Value > initialValue);
        }
예제 #3
0
        public void ShouldScrollRightTest()
        {
            var initialValue = hScrollBar.Value;

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