views:

418

answers:

2

I wrote the test case for junit3.

In eclipse test runner there are Junit 3 and Junit4.

If I use junit 4 I can not run each individual testmethod. So I want to use only Junit 3.

I removed the junit4 plugin from eclipse/plugin. Still I am seeing the Junit4 tag in the test runner option.

How can I remove Junit4 from my test runner option?

+3  A: 

You can run an individual testmethod with Junit 4. Just right-click on the method in the outline and choose "run with Junit".

Adrian
A: 

I have the same Issue with the TestRunner in Eclipse.

All tests should be tested with jUnit3, if i run a non-configured Test, it tries to use the default-TestRunner (jUnit4 grr).

So, i need to go into the run/debug configuration, change the TestRunner to "jUnit3" and run it again.

On EVERY Test. This just disturbs the workflow.

So, is there an option to REMOVE jUnit4 as possible TestRunner, or even better, change the Default TestRunner to jUnit3 ?

Thanks in Advance,

Vitalij
This is not an answer to the question.
Daniel Pryden