Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug.jdi.tests/tests/org/eclipse/debug/jdi/tests/MirrorTest.java')
-rw-r--r--org.eclipse.jdt.debug.jdi.tests/tests/org/eclipse/debug/jdi/tests/MirrorTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.jdt.debug.jdi.tests/tests/org/eclipse/debug/jdi/tests/MirrorTest.java b/org.eclipse.jdt.debug.jdi.tests/tests/org/eclipse/debug/jdi/tests/MirrorTest.java
index 8d1975aee..ed16b8083 100644
--- a/org.eclipse.jdt.debug.jdi.tests/tests/org/eclipse/debug/jdi/tests/MirrorTest.java
+++ b/org.eclipse.jdt.debug.jdi.tests/tests/org/eclipse/debug/jdi/tests/MirrorTest.java
@@ -33,6 +33,7 @@ public class MirrorTest extends AbstractJDITest {
/**
* Init the fields that are used by this test only.
*/
+ @Override
public void localSetUp() {
// Get all kinds of concrete mirror that can be found in the VM
// in alphabetical order.
@@ -80,6 +81,7 @@ public class MirrorTest extends AbstractJDITest {
/**
* Make sure the test leaves the VM in the same state it found it.
*/
+ @Override
public void localTearDown() {
ListIterator iterator = fMirrors.listIterator();
while (iterator.hasNext()) {
@@ -112,6 +114,7 @@ public class MirrorTest extends AbstractJDITest {
* Gets the name of the test case.
* @see junit.framework.TestCase#getName()
*/
+ @Override
public String getName() {
return "com.sun.jdi.Mirror";
}

Back to the top