blob: 785e505b8f389506f8e548ad1e16c86c2f90d504 [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.google.common.collect.ImmutableList;
import java.util.List;
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 TreeShaking16Test extends TreeShakingTest {
@Parameters(name = "mode:{0}-{1} minify:{2}")
public static List<Object[]> data() {
return data(MinifyMode.withoutNone());
}
public TreeShaking16Test(Frontend frontend, TestParameters parameters, MinifyMode minify) {
super(frontend, parameters, minify);
}
@Override
protected String getName() {
return "examples/shaking16";
}
@Override
protected String getMainClass() {
return "shaking16.Shaking";
}
@Test
public void testKeeprules1() throws Exception {
runTest(null, null, null, ImmutableList.of("src/test/examples/shaking16/keep-rules-1.txt"));
}
@Test
public void testKeeprules2() throws Exception {
runTest(null, null, null, ImmutableList.of("src/test/examples/shaking16/keep-rules-2.txt"));
}
}