Question
Run several test suites in sequence
Hi,
I have several test suites. I would like to run each of them in sequence because each has its own configuration. If I did the following, tests from different suites will be mixed with others while running.
testRunner.test = new Suite1();
testRunner.startTest();
testRunner.test = new Suite2();
testRunner.startTest();
testRunner.test = new Suite2();
testRunner.startTest();
Anyone has ideas how to solve this?
Thanks,
Dina
I have several test suites. I would like to run each of them in sequence because each has its own configuration. If I did the following, tests from different suites will be mixed with others while running.
testRunner.test = new Suite1();
testRunner.startTest();
testRunner.test = new Suite2();
testRunner.startTest();
testRunner.test = new Suite2();
testRunner.startTest();
Anyone has ideas how to solve this?
Thanks,
Dina
