views:

104

answers:

1

We have been supporting a legacy project that requires the use of Java 1.4, and during development of test suites in Eclipse 3.4.0 it is pretty cumbersome to have to set each test's default runner to Junit3 manually. I am aware that it is possible to use different JVM's while running automated build scripts that launch the test suites, but this particular annoyance happens during development, when you're 'testing the tests' one by one, so to say.

I have been trying to find a way to make JUnit3 the default runner for this version of Eclipse to no avail. Is the only solution to use an older version of Eclipse?

+1  A: 

You may be able to reference and enable the desired version in the Preferences > Java > Junit dialog. Here's a similar approach for NetBeans.

trashgod