Package jadx.tests.integration.conditions

Source Code of jadx.tests.integration.conditions.TestTernary$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;
import static org.junit.Assert.assertTrue;

public class TestTernary extends IntegrationTest {

  public static class TestCls {
    public boolean test1(int a) {
      return a != 2;
    }

    public void test2(int a) {
      assertTrue(a == 3);
    }

    public int test3(int a) {
      return a > 0 ? 1 : (a + 2) * 3;
    }
  }

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

    assertThat(code, not(containsString("else")));
    assertThat(code, containsString("return a != 2;"));
    assertThat(code, containsString("assertTrue(a == 3)"));
    assertThat(code, containsString("return a > 0 ? 1 : (a + 2) * 3;"));
  }
TOP

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