core: change jadx args api for easier processing and validation

This commit is contained in:
Skylot
2018-02-10 21:32:51 +03:00
parent 32f94b463f
commit 948f9456f5
32 changed files with 473 additions and 524 deletions
@@ -8,7 +8,7 @@ import static org.junit.Assert.assertThat;
public class JadxCLIArgsTest {
@Test
public void testInvertedBooleanOption() throws Exception {
public void testInvertedBooleanOption() {
assertThat(parse("--no-replace-consts").isReplaceConsts(), is(false));
assertThat(parse("").isReplaceConsts(), is(true));
}