< prev index next >

test/jdk/tools/jpackage/createappimage/JPackageCreateAppImageBase.java

Print this page

        

@@ -22,11 +22,11 @@
  */
 
 import java.io.File;
 import java.nio.file.Files;
 
-public abstract class JPackageCreateImageBase {
+public abstract class JPackageCreateAppImageBase {
     private static final String app = JPackagePath.getApp();
     private static final String appOutput = JPackagePath.getAppOutputFile();
     private static final String appWorkingDir = JPackagePath.getAppWorkingDir();
 
     private static void validateResult(String[] result) throws Exception {

@@ -59,15 +59,15 @@
         String output = Files.readString(outfile.toPath());
         String[] result = output.split("\n");
         validateResult(result);
     }
 
-    public static void testCreateImage(String [] cmd) throws Exception {
+    public static void testCreateAppImage(String [] cmd) throws Exception {
         JPackageHelper.executeCLI(true, cmd);
         validate();
     }
 
-    public static void testCreateImageToolProvider(String [] cmd) throws Exception {
+    public static void testCreateAppImageToolProvider(String [] cmd) throws Exception {
         JPackageHelper.executeToolProvider(true, cmd);
         validate();
     }
 }
< prev index next >