test/jdk/tools/jpackage/share/ArgumentsModuleTest.java
branchJDK-8200758-branch
changeset 58147 45a9084fe981
parent 58114 42df7de58e39
equal deleted inserted replaced
58119:48b157463fef 58147:45a9084fe981
    34 public class ArgumentsModuleTest {
    34 public class ArgumentsModuleTest {
    35     private static final String OUTPUT = "output";
    35     private static final String OUTPUT = "output";
    36 
    36 
    37     private static final String[] CMD = {
    37     private static final String[] CMD = {
    38         "--package-type", "app-image",
    38         "--package-type", "app-image",
    39         "--output", OUTPUT,
    39         "--dest", OUTPUT,
    40         "--name", "test",
    40         "--name", "test",
    41         "--module", "com.hello/com.hello.Hello",
    41         "--module", "com.hello/com.hello.Hello",
    42         "--module-path", "input",
    42         "--module-path", "input",
    43         "--arguments", "TBD"};
    43         "--arguments", "TBD"};
    44 
    44