Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-11-21 05:02:50 +0000
committerSarika Sinha2016-11-21 05:02:50 +0000
commit8c4bca98d4e1a8444b1fe7ffa288ac2d54c37f25 (patch)
treeb27a85066ed200a8d81554d8442c27563350f0d1
parentce31f650e39b6ee83d5d6431281eed0da445bd23 (diff)
downloadeclipse.jdt.debug-8c4bca98d4e1a8444b1fe7ffa288ac2d54c37f25.tar.gz
eclipse.jdt.debug-8c4bca98d4e1a8444b1fe7ffa288ac2d54c37f25.tar.xz
eclipse.jdt.debug-8c4bca98d4e1a8444b1fe7ffa288ac2d54c37f25.zip
Bug 506401 - [Tests] testTranslateContainers failing with missingI20161121-2000
/JarProject/lib/sample.jar - test Change-Id: Ic81a825ef5505de39af8f38aaff5e65026c31ef3
-rw-r--r--org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java
index 1eb4a18af..c4cb763b8 100644
--- a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java
+++ b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/sourcelookup/JarSourceLookupTests.java
@@ -96,7 +96,7 @@ public class JarSourceLookupTests extends AbstractDebugTest {
*
* @throws Exception
*/
- public void testTranslateContainers() throws Exception {
+ public void AtestTranslateContainers() throws Exception {
createLaunchConfiguration(fgJarProject, LAUNCHCONFIGURATIONS, A_RUN_JAR);
ILaunchConfiguration config = getLaunchConfiguration(fgJarProject, LAUNCHCONFIGURATIONS, A_RUN_JAR);
IRuntimeClasspathEntry[] entries = JavaRuntime.computeUnresolvedSourceLookupPath(config);
@@ -129,7 +129,7 @@ public class JarSourceLookupTests extends AbstractDebugTest {
*
* @throws Exception
*/
- public void AtestInspectClassFileFromJar() throws Exception {
+ public void testInspectClassFileFromJar() throws Exception {
createLaunchConfiguration(fgJarProject, LAUNCHCONFIGURATIONS, A_RUN_JAR);
createLineBreakpoint(16, A_RUN_JAR);
ILaunchConfiguration config = getLaunchConfiguration(fgJarProject, LAUNCHCONFIGURATIONS, A_RUN_JAR);

Back to the top