Question

How can I launch a Java test suite using Perl?

Was it helpful?

Solution

You can make use of system function.

system("java Sample");

OTHER TIPS

I would use the JMX module if possible.

You can use system or exec to issue the relevant java ... command line, e.g.:

system('java ClassName some arguments here');
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top