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
07209929
Commit
07209929
authored
Apr 09, 2019
by
Ahmed Ashour
Committed by
skylot
Apr 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: add test case for #130 (PR #578)
parent
ef28875a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
TestNestedLoops4.java
...t/java/jadx/tests/integration/loops/TestNestedLoops4.java
+38
-0
No files found.
jadx-core/src/test/java/jadx/tests/integration/loops/TestNestedLoops4.java
0 → 100644
View file @
07209929
package
jadx
.
tests
.
integration
.
loops
;
import
org.junit.jupiter.api.Test
;
import
jadx.NotYetImplemented
;
import
jadx.tests.api.IntegrationTest
;
public
class
TestNestedLoops4
extends
IntegrationTest
{
public
static
class
TestCls
{
public
int
testFor
()
{
int
tmp
=
1
;
for
(
int
i
=
10
;
i
>
-
1
;
i
--)
{
if
(
i
>
tmp
)
{
for
(
int
j
=
0
;
j
<
54
;
j
+=
4
)
{
if
(
i
<
j
)
{
for
(
int
k
=
j
;
k
<
j
+
4
;
k
++)
{
if
(
tmp
>
k
)
{
return
0
;
}
}
break
;
}
}
}
tmp
++;
}
return
tmp
;
}
}
@Test
@NotYetImplemented
public
void
test
()
{
getClassNode
(
TestCls
.
class
);
}
}
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