use of org.getopentest.base.TestActor in project opentest by mcdcorp.
the class Main method main.
public static void main(String[] args) {
processCommandLineArgs(args);
ITestActor actor = new TestActor();
while (true) {
try {
actor.runOneSession();
} catch (Exception ex) {
Logger.error("An exception was thrown from the runOneSession method, which shouldn't " + "normally happen and might indicate a bug. Please provide all potentially " + "relevant data to the dev team for a fix (logs, context, etc).", ex);
}
}
}
Aggregations