Package jadx.tests.integration.variables

Source Code of jadx.tests.integration.variables.TestVariables3$TestCls

package jadx.tests.integration.variables;

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

import org.junit.Test;

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

public class TestVariables3 extends IntegrationTest {

  public static class TestCls {
    String test(Object s) {
      int i;
      if (s == null) {
        i = 2;
      } else {
        i = 3;
        s = null;
      }
      return s + " " + i;
    }
  }

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

    assertThat(code, containsString("int i;"));
    assertThat(code, containsString("i = 2;"));
    assertThat(code, containsString("i = 3;"));
    assertThat(code, containsString("s = null;"));
    assertThat(code, containsString("return s + \" \" + i;"));
  }
}
TOP

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