I wanna use junit 3. Is there such functionality to run all tests by using console in junit 3. If not, does junit 4 support it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes you can. Create a test suite and all the tests that you want to run to this test suite. Run this test suite from console. |
|||
|
|
|
You can create different test suites that are relevant to the part of the code you're working on (as stated in the faq) and then run them from the console. |
|||
|
|
|
Or you can use Ant to run all your tests from the console, doesn't matter if it's junit 3 or 4. Ant includes a |
|||
|
|