How to run all JUnit tests of a given package?

eclipse, java, junit

Solution

Right-click on the package in the package explorer and select 'Run as' and 'Unit-Test'.

Problem

I use JUnit 4 in eclipse. I have some test classes in my package and want to run them all. How?

Original source