いやはやまさか4から無くなっていたとは…。

JUnit 4.x only comes with a textual TestRunner. For graphical feedback, most major IDE's support JUnit 4. If necessary, you can run JUnit 4 tests in a JUnit 3 environment by adding the following method to each test class:

http://junit.sourceforge.net/
public static Test suite() {
   return new JUnit4TestAdapter(ThisClass.class);
}