Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scale.java')
-rw-r--r--tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scale.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scale.java b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scale.java
index 8758f9442e..089b400e81 100644
--- a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scale.java
+++ b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Scale.java
@@ -107,8 +107,8 @@ Scale scale;
// this method must be private or protected so the auto-gen tool keeps it
private void report(String call, int set, int minExpected, int maxExpected, int selectionExpected) {
- //Uncomment these lines and comment out call to check() if you want the test to report all errors without
- //stopping.
+ //Uncomment these lines and comment out call to check() if you want the test to report all errors without
+ //stopping.
//if (trackBar.getMinimum() != minExpected)
//System.out.println(call + "(" + set + "): Minimum Expected: " + minExpected + " Actual: " + trackBar.getMinimum());
@@ -568,27 +568,27 @@ return new int[][] {
@Test
public void test_consistency_KeySelection () {
- consistencyEvent(0, SWT.ARROW_RIGHT, 0, 0, ConsistencyUtility.KEY_PRESS);
+ consistencyEvent(0, SWT.ARROW_RIGHT, 0, 0, ConsistencyUtility.KEY_PRESS);
}
@Test
public void test_consistency_ThumbSelection () {
- consistencyEvent(9, 10, 1, 0, ConsistencyUtility.MOUSE_CLICK);
+ consistencyEvent(9, 10, 1, 0, ConsistencyUtility.MOUSE_CLICK);
}
@Test
public void test_consistency_TroughSelection () {
- consistencyEvent(27, 10, 1, 0, ConsistencyUtility.MOUSE_CLICK);
+ consistencyEvent(27, 10, 1, 0, ConsistencyUtility.MOUSE_CLICK);
}
@Test
public void test_consistency_MenuDetect () {
- consistencyEvent(27, 5, 3, 0, ConsistencyUtility.MOUSE_CLICK);
+ consistencyEvent(27, 5, 3, 0, ConsistencyUtility.MOUSE_CLICK);
}
@Test
public void test_consistency_DragDetect () {
- consistencyEvent(9, 5, 30, 10, ConsistencyUtility.MOUSE_DRAG);
+ consistencyEvent(9, 5, 30, 10, ConsistencyUtility.MOUSE_DRAG);
}
}

Back to the top