modules/fxpackager/src/test/java/com/oracle/tools/packager/windows/WinExeBundlerTest.java

Print this page
rev 6889 : RT-36724 - JavaFX Packager Renaming
Summary: Move java code around to new packages.

*** 21,38 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package com.oracle.bundlers.windows; ! import com.oracle.bundlers.Bundler; ! import com.sun.javafx.tools.packager.Log; ! import com.sun.javafx.tools.packager.bundlers.ConfigException; ! import com.sun.javafx.tools.packager.bundlers.RelativeFileSet; ! import com.sun.javafx.tools.packager.bundlers.UnsupportedPlatformException; ! import com.sun.javafx.tools.packager.bundlers.WinExeBundler; import org.junit.After; import org.junit.Assume; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; --- 21,37 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package com.oracle.tools.packager.windows; ! import com.oracle.tools.packager.Bundler; ! import com.oracle.tools.packager.Log; ! import com.oracle.tools.packager.ConfigException; ! import com.oracle.tools.packager.RelativeFileSet; ! import com.oracle.tools.packager.UnsupportedPlatformException; import org.junit.After; import org.junit.Assume; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test;
*** 40,55 **** import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.util.*; ! import static com.oracle.bundlers.StandardBundlerParam.*; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; ! public class WinEXEBundlerTest { static File tmpBase; static File workDir; static File appResourcesDir; static File fakeMainJar; --- 39,54 ---- import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.util.*; ! import static com.oracle.tools.packager.StandardBundlerParam.*; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; ! public class WinExeBundlerTest { static File tmpBase; static File workDir; static File appResourcesDir; static File fakeMainJar;