Package jadx.tests.integration.loops

Source Code of jadx.tests.integration.loops.TestArrayForEach$TestCls

package jadx.tests.integration.loops;

import jadx.core.dex.nodes.ClassNode;
import jadx.tests.api.IntegrationTest;

import org.junit.Test;

import static jadx.tests.api.utils.JadxMatchers.containsLines;
import static org.junit.Assert.assertThat;

public class TestArrayForEach extends IntegrationTest {

  public static class TestCls {

    private int test(int[] a) {
      int sum = 0;
      for (int n : a) {
        sum += n;
      }
      return sum;
    }
  }

  @Test
  public void test() {
    ClassNode cls = getClassNode(TestCls.class);
    String code = cls.getCode().toString();

    assertThat(code, containsLines(2,
        "int sum = 0;",
        "for (int n : a) {",
        indent(1) + "sum += n;",
        "}",
        "return sum;"
    ));
  }
}
TOP

Related Classes of jadx.tests.integration.loops.TestArrayForEach$TestCls

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.