Package jadx.tests.integration.switches

Source Code of jadx.tests.integration.switches.TestSwitchNoDefault$TestCls

package jadx.tests.integration.switches;

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

import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class TestSwitchNoDefault extends IntegrationTest {

  public static class TestCls {
    public void test(int a) {
      String s = null;
      switch (a) {
        case 1:
          s = "1";
          break;
        case 2:
          s = "2";
          break;
        case 3:
          s = "3";
          break;
        case 4:
          s = "4";
          break;
      }
      System.out.println(s);
    }
  }

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

    assertEquals(4, count(code, "break;"));
    assertEquals(1, count(code, "System.out.println(s);"));
  }
}
TOP

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