How do I make IntelliJ IDEA run all the tests in a package including sub packages

If I click on a package and do control-shift-F10 it only looks for and runs JUnit tests in that package - but I really want it to recurse down into subpackages and run them.

UPDATE: looks like its something else wrong. When I run it on a package that has tests, it still complains there are none (yet if I open a JUnit test I can run it just fine).


Solution 1:

  1. Run->Edit Configurations...
  2. Create a new junit test configuration
  3. Name it "All tests"
  4. Include entire package
  5. Apply/Run.

enter image description here

From @andersoyvind's comment.

Solution 2:

The default key combination to run all tests is Ctrl+Shift+F10

Solution 3:

I've solved this thanks to csauve response. This could be an answer to his, but I didn't know how to include an image there.

Run/Debug Configurations dialog box can be access via Run > Edit Configurations. Use these options to create one that runs all your tests:

Run/Debug configuration for all tests