Running all tests under a directory misbehaviour
When I run all test under a directory by right-clicking it (Run All Tests), IDEA tries also to run test related classes from project libraries (for example junit.extensions.ExceptionTestCase). How do I disable this?
Please sign in to leave a comment.
You don't, I'm afraid. The trick is to not select the containing directory, but instead to select your top-level package in that directory. Unless your using classes without package statements (worst practice), this will be equivalent, and not catch the ExceptionTestCase.
--Dave Griffith