If someone writes a new unit test but they forget to add it to a suite, the continuous build will continue to pass happily even if someone later breaks the test. Is there a way to discover JUnit tests that aren't included in a suite?
EDIT
I know I could move to JUnit 4 but then the question becomes, how do I find tests that are missing the @Test annotation?