Package jadx.tests.integration

Source Code of jadx.tests.integration.TestRedundantReturn$TestCls

package jadx.tests.integration;

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.fail;

public class TestRedundantReturn extends IntegrationTest {

  public static class TestCls {
    public void test(int num) {
      if (num == 4) {
        fail();
      }
    }
  }

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

    assertThat(code, not(containsString("return;")));
  }
}
TOP

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