diff --git a/jadx-core/src/test/java/jadx/tests/integration/loops/TestEndlessLoop.java b/jadx-core/src/test/java/jadx/tests/integration/loops/TestEndlessLoop.java new file mode 100644 index 000000000..28dedc5e6 --- /dev/null +++ b/jadx-core/src/test/java/jadx/tests/integration/loops/TestEndlessLoop.java @@ -0,0 +1,42 @@ +package jadx.tests.integration.loops; + +import org.junit.Test; + +import jadx.core.dex.nodes.ClassNode; +import jadx.tests.api.IntegrationTest; + +import static jadx.tests.api.utils.JadxMatchers.containsOne; +import static org.hamcrest.Matchers.containsString; +import static org.junit.Assert.assertThat; + +public class TestEndlessLoop extends IntegrationTest { + + public static class TestCls { + + void test1() { + while (this == this) { + } + } + + void test2() { + do { + } while (this == this); + } + + void test3() { + while (true) { + if (this != this) { + return; + } + } + } + } + + @Test + public void test() { + ClassNode cls = getClassNode(TestCls.class); + String code = cls.getCode().toString(); + + assertThat(code, containsString("while (this == this)")); + } +}