Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jadx
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
jadx
Commits
1e554117
Commit
1e554117
authored
Apr 02, 2019
by
Ahmed Ashour
Committed by
skylot
Apr 02, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: move test class and rename GUI message (PR #555)
parent
bae7f1b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
14 deletions
+15
-14
TestTryAfterDeclaration.java
...x/tests/integration/trycatch/TestTryAfterDeclaration.java
+14
-13
Messages_en_US.properties
jadx-gui/src/main/resources/i18n/Messages_en_US.properties
+1
-1
No files found.
jadx-core/src/test/java/jadx/tests/integration/trycatch/TryAfterDeclaration.java
→
jadx-core/src/test/java/jadx/tests/integration/trycatch/T
estT
ryAfterDeclaration.java
View file @
1e554117
...
@@ -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
)
{
}
}
}
jadx-gui/src/main/resources/i18n/Messages_en_US.properties
View file @
1e554117
...
@@ -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.
\n
Do you want to replace it?
confirm.save_as_message
=
%s already exists.
\n
Do 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment