Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small Java project in Eclipse. I have a class of JUnit tests for each class in the project. I'm using JUnit 4, and this is not a maven project.

Is there an easy way to tell Eclipse to run all tests in all test classes at once?

share|improve this question

2 Answers

up vote 10 down vote accepted

Right click on a source folder then Run As… > JUnit Test.

share|improve this answer
You could also create a parent unit test suite and list all of your tests/suites in it. – kfox Apr 22 '11 at 20:33

Select the source directory containing all test classes, right-click, select "Run as..." and select JUnit test.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.