Commit 6fca311d authored by Ahmed Ashour's avatar Ahmed Ashour Committed by skylot

test: add test case for #536 (PR #537)

parent 8e279f55
package jadx.tests.integration.arrays;
import org.junit.jupiter.api.Test;
import jadx.core.dex.nodes.ClassNode;
import jadx.tests.api.IntegrationTest;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.MatcherAssert.assertThat;
public class TestArrayFill3 extends IntegrationTest {
public static class TestCls {
public byte[] test(int a) {
return new byte[]{0, 1, 2};
}
}
@Test
public void test() {
ClassNode cls = getClassNode(TestCls.class);
String code = cls.getCode().toString();
assertThat(code, containsString("return new byte[]"));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment