I have switched to JUnit4.4 from JUnit3.8. I run my tests using ant, all my tests run successfully but test utility classes fail with \"No runnable methods\" error. The patt
Annotate your util classes with @Ignore. This will cause JUnit not to try and run them as tests.