In order to test a Map class I have defined, I have extended MapInterfaceTest from the Google Collections library.
The problem is I want to add more tests to this class, and be able to ignore specific long-running or broken ones with the @Ignore annotation while developing, but because MapInterfaceTest extends TestCase, the tests are run in Junit3 compatibility mode, and the annotations are ignored.
Is there any way to get Junit to respect the annotations on a test class which extends TestCase?