Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.tests/src/org/eclipse/debug/tests/breakpoint/BreakpointOrderingTests.java')
-rw-r--r--org.eclipse.debug.tests/src/org/eclipse/debug/tests/breakpoint/BreakpointOrderingTests.java16
1 files changed, 12 insertions, 4 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/breakpoint/BreakpointOrderingTests.java b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/breakpoint/BreakpointOrderingTests.java
index 2b764fbdc..c70242f79 100644
--- a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/breakpoint/BreakpointOrderingTests.java
+++ b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/breakpoint/BreakpointOrderingTests.java
@@ -13,6 +13,10 @@
*******************************************************************************/
package org.eclipse.debug.tests.breakpoint;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
import java.util.List;
import org.eclipse.core.resources.IMarker;
@@ -38,6 +42,7 @@ import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Widget;
import org.eclipse.ui.IEditorInput;
+import org.junit.Test;
/**
* Test the ordering used in the breakpoints view.
@@ -46,10 +51,6 @@ import org.eclipse.ui.IEditorInput;
*/
public class BreakpointOrderingTests extends AbstractDebugTest {
- public BreakpointOrderingTests(String name) {
- super(name);
- }
-
/**
* Test only implementation of IBreakpoint.
*/
@@ -366,15 +367,22 @@ public class BreakpointOrderingTests extends AbstractDebugTest {
return fTestBps;
}
+ @Test
public void testBreakpointOrdering0() throws CoreException {
executeTest(createTestBreakpoints0());
}
+
+ @Test
public void testBreakpointOrdering1() throws CoreException {
executeTest(createTestBreakpoints1());
}
+
+ @Test
public void testBreakpointOrdering2() throws CoreException {
executeTest(createTestBreakpoints2());
}
+
+ @Test
public void testBreakpointOrdering3() throws CoreException {
executeTest(createTestBreakpoints3());
}

Back to the top