Is there a way to run JUnit-Tests from several projects conveniently fast in Eclipse?
The JUnit-Runner lets you define a package or a folder where from all contained
It’s actually quite easy to perform JUnit tests across multiple projects from within Eclipse. Have a look at Classpath Suite. It’s not with the standard JUnit runner, but you did not mention where that requirement came from, so I’m not sure whether this will affect you.
All the usage information is on that page, but to summarize:
Write a simple test suite including everything:
@RunWith(ClasspathSuite.class)
public class MySuite {}