package org.jboss.windup.tests.bootstrap.migrate; import org.jboss.windup.tests.bootstrap.AbstractBootstrapTestWithRules; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; import java.io.IOException; import java.nio.file.Files; import static org.junit.Assert.assertFalse; public class ExcludePackagesSameAsPackagesTest extends AbstractBootstrapTestWithRules { @Rule public final TemporaryFolder tmp = new TemporaryFolder(); @Test public void excludePackagesSameAsPackages() throws IOException { bootstrap("--input", "../test-files/Windup1x-javaee-example-tiny.war", "--output", tmp.getRoot().getAbsolutePath(), "--source", "eap6", "--target", "eap7", "--packages", "org.windup", "--excludePackages", "org.windup"); String indexHtml = new String(Files.readAllBytes(tmp.getRoot().toPath().resolve("index.html")), "UTF-8"); assertFalse(indexHtml.contains("Decompiled Java File")); } }