Package jadx.tests.integration.conditions

Source Code of jadx.tests.integration.conditions.TestConditions4$TestCls

package jadx.tests.integration.conditions;

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

import org.junit.Test;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.not;
import static org.junit.Assert.assertThat;

public class TestConditions4 extends IntegrationTest {

  public static class TestCls {
    public int test(int num) {
      boolean inRange = (num >= 59 && num <= 66);
      return inRange ? num + 1 : num;
    }
  }

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

    assertThat(code, containsString("num >= 59 && num <= 66"));
    assertThat(code, containsString("return inRange ? num + 1 : num;"));
    assertThat(code, not(containsString("else")));
  }
}
TOP

Related Classes of jadx.tests.integration.conditions.TestConditions4$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.