[EMAIL PROTECTED] wrote:
Ok, if you're stuck on 2.1 then perhaps you could define TestSuites (one for each developer):I think this only applies to Eclipse 3.0?
We're on 2.1 still as the clearcase support in 3.0 is currently pretty terrible
public class Developer1Suite() extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTestSuite(MyFooTest.class);
suite.addTestSuite(MyBarTest.class);
return suite;
}
}This way, you can exclude the developer suites easily with an ant pattern, and the developers can run their own tests easy.
Hope this helps until eclipse 3.0 :-)
Martijn
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
