Package jadx.tests.integration.variables

Source Code of jadx.tests.integration.variables.TestVariables2

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 TestVariables2 extends IntegrationTest {

  public static class TestCls {
    Object test(Object s) {
      Object store = s != null ? s : null;
      if (store == null) {
        store = new Object();
        s = store;
      }
      return store;
    }
  }

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

    assertThat(code, containsString("Object store = s != null ? s : null;"));
  }
}
TOP

Related Classes of jadx.tests.integration.variables.TestVariables2

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.