I have a test suite that depends on a certain order of tests. More
precisely, a unit test, which looks like
[...]
I'm not sure if the surefire plugin behaves the same as JUnit ... but
in JUnit you can manually create a TestSuite and specify the order in
which tests are executed:
TestSuite suite= new TestSuite();
suite.addTest(new MathTest("testAdd"));
suite.addTest(new MathTest("testDivideByZero"));
Maybe this helps?
-dirk
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]