Package jadx.tests.integration.inner

Source Code of jadx.tests.integration.inner.TestInnerClass3$TestCls$C

package jadx.tests.integration.inner;

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

  public static class TestCls {
    private String c;

    private void setC(String c) {
      this.c = c;
    }

    public class C {
      public String c() {
        setC("c");
        return c;
      }
    }
  }

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

    assertThat(code, not(containsString("synthetic")));
    assertThat(code, not(containsString("access$")));
    assertThat(code, not(containsString("x0")));
    assertThat(code, containsString("setC(\"c\");"));
  }
}
TOP

Related Classes of jadx.tests.integration.inner.TestInnerClass3$TestCls$C

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.