< prev index next >

functional/appBundlerTestsJDK9/appBundlerTestsJDK9/test/com/oracle/appbundlers/tests/functionality/IconTest.java

Print this page

        

*** 22,31 **** --- 22,32 ---- import java.util.HashMap; import java.util.Map; import com.oracle.appbundlers.tests.functionality.functionalinterface.AdditionalParams; import com.oracle.appbundlers.utils.BundlerUtils; + import com.oracle.appbundlers.utils.BundlingManagers; import com.oracle.appbundlers.utils.ExtensionType; /** * @author Dmitry Ginzburg &lt;dmitry.x.ginzburg@oracle.com&gt; * @author Dmitry Zinkevich &lt;dmitry.zinkevich@oracle.com&gt;
*** 54,71 **** public BundlerUtils[] getBundlerUtils() { return new BundlerUtils[] { MAC_APP, DMG, PKG, WIN_APP, EXE, MSI, DEB, RPM }; } @Override public void overrideParameters(ExtensionType intermediate) throws IOException { this.currentParameter.setAdditionalParams(getAdditionalParams()); } - - @Override - public boolean isTestCaseApplicableForExtensionType( - ExtensionType extension) { - return ExtensionType.NormalJar == extension; - } } --- 55,70 ---- public BundlerUtils[] getBundlerUtils() { return new BundlerUtils[] { MAC_APP, DMG, PKG, WIN_APP, EXE, MSI, DEB, RPM }; } + @Override + protected BundlingManagers[] getBundlingManagers() { + return new BundlingManagers[] { BundlingManagers.CLI }; + } @Override public void overrideParameters(ExtensionType intermediate) throws IOException { this.currentParameter.setAdditionalParams(getAdditionalParams()); } }
< prev index next >