blob: 88ca339319b886a5c49d9d1e95849818dde93b15 [file] [log] [blame]
// Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.shaking.examples;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.shaking.TreeShakingTest;
import com.android.tools.r8.utils.StringUtils;
import com.google.common.collect.ImmutableList;
import java.util.List;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class TreeShakingAssumevalues2Test extends TreeShakingTest {
@Parameters(name = "mode:{0}-{1} minify:{2}")
public static List<Object[]> data() {
return defaultTreeShakingParameters();
}
public TreeShakingAssumevalues2Test(
Frontend frontend, TestParameters parameters, MinifyMode minify) {
super(frontend, parameters, minify);
}
@Override
protected String getName() {
return "examples/assumevalues2";
}
@Override
protected String getMainClass() {
return "assumevalues2.Assumevalues";
}
@Test
public void test() throws Exception {
runTest(
null,
TreeShakingAssumevalues2Test::assumevalues2CheckOutput,
null,
ImmutableList.of("src/test/examples/assumevalues2/keep-rules.txt"));
}
private static void assumevalues2CheckOutput(String output1, String output2) {
Assert.assertEquals(StringUtils.lines("1", "2", "3", "4", "1L", "2L", "3L", "4L"), output1);
Assert.assertEquals(StringUtils.lines("2", "3", "2L", "3L"), output2);
}
}