When testing Eclipse RCP plugins, it is good practice to have all test classes and resources live in a dedicated (test) fragment. This way all classes in the host plugin can be accessed, no matter if those packages are actually exported or not.
But what if I have a common test infrastructure, that is used by many plugins?
I cannot put this into a fragment, since I cannot reuse classes inside a fragment somewhere else.