Package jadx.tests.integration.conditions

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

package jadx.tests.integration.conditions;

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

import org.junit.Test;

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

public class TestConditions14 extends IntegrationTest {

  public static class TestCls {

    public static boolean test(Object a, Object b) {
      boolean r = a == null ? b != null : !a.equals(b);
      if (r) {
        return false;
      }
      System.out.println("1");
      return true;
    }
  }

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

    assertThat(code, containsOne("boolean r = a == null ? b != null : !a.equals(b);"));
    assertThat(code, containsOne("if (r) {"));
    assertThat(code, containsOne("System.out.println(\"1\");"));

  }
}
TOP

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