public void setUpForHeadlessCommandLineInputOperations()
throws IOException
{
- String cmds = "nodisplay -open examples/uniref50.fa -sortbytree -props test/jalview/bin/testProps.jvprops -colour zappo "
+ String cmds = "nodisplay -open examples/uniref50.fa -sortbytree --props=test/jalview/bin/testProps.jvprops -colour zappo "
+ "-jabaws http://www.compbio.dundee.ac.uk/jabaws -nosortbytree "
- + "-features examples/testdata/plantfdx.features -annotations examples/testdata/plantfdx.annotations -tree examples/testdata/uniref50_test_tree --debug";
+ + "-features examples/testdata/plantfdx.features -annotations examples/testdata/plantfdx.annotations -tree examples/testdata/uniref50_test_tree";
Worker worker = getJalviewDesktopRunner(true, cmds, SETUP_TIMEOUT);
String ln = null;
while ((ln = worker.getOutputReader().readLine()) != null)
@BeforeTest(alwaysRun = true)
public void setUpForCommandLineInputOperations() throws IOException
{
- String cmds = "-open examples/uniref50.fa -noquestionnaire -nousagestats --debug";
+ String cmds = "-open examples/uniref50.fa -noquestionnaire -nousagestats";
final Worker worker = getJalviewDesktopRunner(false, cmds,
SETUP_TIMEOUT);
{ "CMD [-color zappo] executed successfully!",
"Failed command : -color zappo" },
{ "CMD [-props test/jalview/bin/testProps.jvprops] executed successfully!",
- "Failed command : -props File" },
+ "Failed command : --props=File" },
{ "CMD [-sortbytree] executed successfully!",
"Failed command : -sortbytree" },
{ "CMD [-jabaws http://www.compbio.dundee.ac.uk/jabaws] executed successfully!",
String classpath = getClassPath();
String cmd = java_exe + " " + " -classpath " + classpath + " " + jvmArgs
+ " jalview.bin.Jalview " + " "
- + "-props test/jalview/bin/hidpiTestProps.jvprops " + appArgs;
+ + "--props=test/jalview/bin/hidpiTestProps.jvprops " + appArgs;
Process proc = null;
Worker worker = null;
try
String jvmArgs = HiDPISetting.getScalePropertyArg(scale);
- String appArgs = " -open examples/uniref50.fa -nosplash -nonews -noquestionnaire -nousagestats -nowebservicediscovery --debug";
+ String appArgs = " -open examples/uniref50.fa -nosplash -nonews -noquestionnaire -nousagestats -nowebservicediscovery";
Worker worker = getJalviewDesktopRunner(jvmArgs, appArgs);
assertNotNull(worker, "worker is null");
String classpath = getClassPath();
String cmd = java_exe + " " + " -classpath " + classpath + " "
+ " jalview.bin.Jalview " + " "
- + "-props test/jalview/util/log4jTestProps.jvprops " + appArgs;
+ + "--props=test/jalview/util/log4jTestProps.jvprops " + appArgs;
Process proc = null;
Worker worker = null;
try
@Test(groups = { "Functional" })
public void testLog4j()
{
- String appArgs = " -open examples/uniref50.fa -nosplash -nonews -noquestionnaire -nousagestats -nowebservicediscovery --debug";
+ String appArgs = " -open examples/uniref50.fa -nosplash -nonews -noquestionnaire -nousagestats -nowebservicediscovery";
Worker worker = getJalviewDesktopRunner(appArgs);
assertNotNull(worker, "worker is null");