Search in sources :

Example 1 with TestActor

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);
        }
    }
}
Also used : ITestActor(org.getopentest.contracts.ITestActor) ITestActor(org.getopentest.contracts.ITestActor) TestActor(org.getopentest.base.TestActor)

Aggregations

TestActor (org.getopentest.base.TestActor)1 ITestActor (org.getopentest.contracts.ITestActor)1