public class RobotRunner
extends java.lang.Object
implements java.lang.AutoCloseable
Example:
try (RobotRunner runner = new RobotRunner()) {
runner.run(new String[] {"tests.robot"});
}
| Constructor and Description |
|---|
RobotRunner() |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Cleans up the Jython interpreter.
|
int |
run(java.lang.String[] args)
Runs the tests, but does not cleanup the interpreter afterwards.
|
public int run(java.lang.String[] args)
args - The command line options to Robot Framework.public void close()
close in interface java.lang.AutoCloseable