core: add endless loop test

This commit is contained in:
Skylot
2018-02-04 17:08:22 +03:00
parent 3167cd0817
commit 035506496e
@@ -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)"));
}
}