test: add test case for #597 (PR #603)

This commit is contained in:
Ahmed Ashour
2019-04-15 20:25:47 +02:00
committed by skylot
parent 632cc3ec16
commit 2148d4b0f5
@@ -0,0 +1,36 @@
package jadx.tests.integration.inner;
import org.junit.jupiter.api.Test;
import jadx.NotYetImplemented;
import jadx.tests.api.IntegrationTest;
public class TestAnonymousClass16 extends IntegrationTest {
public static class TestCls {
public Something test() {
Something a = new Something() {
{
put("a", "b");
}
};
a.put("c", "d");
return a;
}
public class Something {
public void put(Object o, Object o2) {
}
}
}
@Test
@NotYetImplemented
public void test() {
noDebugInfo();
getClassNode(TestCls.class);
}
}