Commit 1e554117 authored by Ahmed Ashour's avatar Ahmed Ashour Committed by skylot

fix: move test class and rename GUI message (PR #555)

parent bae7f1b0
...@@ -13,7 +13,20 @@ import jadx.tests.api.IntegrationTest; ...@@ -13,7 +13,20 @@ import jadx.tests.api.IntegrationTest;
import static jadx.tests.api.utils.JadxMatchers.containsOne; import static jadx.tests.api.utils.JadxMatchers.containsOne;
import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.MatcherAssert.assertThat;
public class TryAfterDeclaration extends IntegrationTest { public class TestTryAfterDeclaration extends IntegrationTest {
static class TestClass {
public static void consume() throws IOException {
InputStream bis = null;
try {
bis = new FileInputStream("1.txt");
while (bis != null) {
System.out.println("c");
}
} catch (final IOException e) {
}
}
}
/** /**
* Issue #62. * Issue #62.
...@@ -28,16 +41,4 @@ public class TryAfterDeclaration extends IntegrationTest { ...@@ -28,16 +41,4 @@ public class TryAfterDeclaration extends IntegrationTest {
} }
} }
class TestClass {
public static void consume() throws IOException {
InputStream bis = null;
try {
bis = new FileInputStream("1.txt");
while (bis != null) {
System.out.println("c");
}
} catch (final IOException e) {
}
}
}
...@@ -135,7 +135,7 @@ popup.exclude=Exclude ...@@ -135,7 +135,7 @@ popup.exclude=Exclude
confirm.save_as_title=Confirm Save as confirm.save_as_title=Confirm Save as
confirm.save_as_message=%s already exists.\nDo you want to replace it? confirm.save_as_message=%s already exists.\nDo you want to replace it?
confirm.not_saved_title=Save project confirm.not_saved_title=Save project
confirm.not_saved_message=Save the current project before opening the new one? confirm.not_saved_message=Save the current project before proceeding?
certificate.title=Certificate certificate.title=Certificate
certificate.cert_type=Type certificate.cert_type=Type
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment