< prev index next >

functional/appBundlerTestsJDK9/appBundlerTestsJDK9/test/com/oracle/appbundlers/tests/functionality/jdk9test/UnnamedModuleDependsOn3rdPartyModulesBundledWithEntireJreTest.java

Print this page

        

@@ -65,11 +65,11 @@
 
     public AdditionalParams getAdditionalParams() {
         return () -> {
             Map<String, Object> hashMap = new HashMap<String, Object>();
             hashMap.put(ADD_MODS,
-                    this.currentParameter.getApp().getAllModuleNamesSeparatedByPathSeparator());
+                    this.currentParameter.getApp().addAllModules());
             return hashMap;
         };
     }
 
     @Override

@@ -95,11 +95,11 @@
     protected void prepareApp(AppWrapper app, ExtensionType extension)
             throws IOException, ExecutionException {
         app.preinstallApp(
                 new ExtensionType[] { extension, ExtensionType.NormalJar });
         app.writeSourcesToAppDirectory();
-        app.compileAndCreateJavaExtensionProduct(extension);
+        app.compileAndCreateExtensionEndProduct(extension);
     }
 
     @Override
     protected void initializeAndPrepareApp() throws Exception {
         prepareApp(this.currentParameter.getApp(),
< prev index next >