From aff13e17cf5a4604ccf68b9829681a459c36038d Mon Sep 17 00:00:00 2001 From: Jacek Date: Tue, 13 Jun 2017 23:56:15 +0100 Subject: [PATCH] Updated command-line help --- src/main/java/io/github/utplsql/cli/RunCommand.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/io/github/utplsql/cli/RunCommand.java b/src/main/java/io/github/utplsql/cli/RunCommand.java index fe80f2f..4d44f43 100644 --- a/src/main/java/io/github/utplsql/cli/RunCommand.java +++ b/src/main/java/io/github/utplsql/cli/RunCommand.java @@ -34,14 +34,15 @@ public class RunCommand { @Parameter( names = {"-p", "--path"}, description = "run suites/tests by path, format: \n" + - "-p schema or schema:[suite ...][.test] or schema[.suite ...][.test]") + "-p=[schema|schema:[suite ...][.test]|schema[.suite ...][.test]") private List testPaths = new ArrayList<>(); @Parameter( names = {"-f", "--format"}, variableArity = true, description = "output reporter format: \n" + - "-f reporter_name [output_file] [console_output]") + "enables specified format reporting to specified output file (-o) and to screen (-s)\n" + + "-f=reporter_name [-o=output_file [-s]]") private List reporterParams = new ArrayList<>(); @Parameter(