test/jdk/tools/jpackage/share/AdditionalLaunchersTest.java
branchJDK-8200758-branch
changeset 58416 f09bf58c1f17
parent 58301 e0efb29609bd
child 58648 3bf53ffa9ae7
--- a/test/jdk/tools/jpackage/share/AdditionalLaunchersTest.java	Mon Sep 30 15:59:50 2019 -0400
+++ b/test/jdk/tools/jpackage/share/AdditionalLaunchersTest.java	Mon Sep 30 19:11:19 2019 -0400
@@ -31,7 +31,7 @@
 import jdk.jpackage.test.PackageTest;
 import jdk.jpackage.test.PackageType;
 import jdk.jpackage.test.FileAssociations;
-import jdk.jpackage.test.Test;
+import jdk.jpackage.test.TKit;
 
 /**
  * Test --add-launcher parameter. Output of the test should be
@@ -45,13 +45,14 @@
  * @test
  * @summary jpackage with --add-launcher
  * @library ../helpers
+ * @build jdk.jpackage.test.*
  * @modules jdk.jpackage/jdk.jpackage.internal
  * @run main/othervm/timeout=360 -Xmx512m AdditionalLaunchersTest
  */
 public class AdditionalLaunchersTest {
 
     public static void main(String[] args) {
-        Test.run(args, () -> {
+        TKit.run(args, () -> {
             FileAssociations fa = new FileAssociations(
                     MethodHandles.lookup().lookupClass().getSimpleName());
 
@@ -75,7 +76,7 @@
             AdditionalLauncher barLauncher = new AdditionalLauncher("Bar").setArguments(
                     "one", "two", "three");
             packageTest.forTypes(PackageType.LINUX).addInitializer(cmd -> {
-                barLauncher.setIcon(Test.TEST_SRC_ROOT.resolve("apps/dukeplug.png"));
+                barLauncher.setIcon(TKit.TEST_SRC_ROOT.resolve("apps/dukeplug.png"));
             });
             barLauncher.applyTo(packageTest);
 
@@ -109,7 +110,7 @@
         }
 
         void applyTo(PackageTest test) {
-            final Path propsFile = Test.workDir().resolve(name + ".properties");
+            final Path propsFile = TKit.workDir().resolve(name + ".properties");
 
             test.addInitializer(cmd -> {
                 cmd.addArguments("--add-launcher", String.format("%s=%s", name,
@@ -125,13 +126,13 @@
                     properties.put("icon", icon.toAbsolutePath().toString());
                 }
 
-                Test.createPropertiesFile(propsFile, properties);
+                TKit.createPropertiesFile(propsFile, properties);
             });
             test.addInstallVerifier(cmd -> {
                 Path launcherPath = replaceFileName(
                         cmd.launcherInstallationPath(), name);
 
-                Test.assertExecutableFileExists(launcherPath, true);
+                TKit.assertExecutableFileExists(launcherPath);
 
                 if (cmd.isFakeRuntimeInstalled(String.format(
                         "Not running %s launcher", launcherPath))) {
@@ -145,7 +146,7 @@
                 Path launcherPath = replaceFileName(
                         cmd.launcherInstallationPath(), name);
 
-                Test.assertExecutableFileExists(launcherPath, false);
+                TKit.assertPathExists(launcherPath, false);
             });
         }