提交 07209929 编写于 作者: A Ahmed Ashour 提交者: skylot

test: add test case for #130 (PR #578)

上级 ef28875a
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);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册