What GUI should use to run my JUnit tests, and how exactly do I do that? My entire background is in .NET, so I\'m used to just firing up my NUnit gui and running my unit tes
If you want a standalone test runner (not the build-in IDE one), then for Junit3 you can use
junit.textui.TestRunner %your_class% - command line based runnerjunit.swingui.TestRunner [%your_class%] - runner with user interface (swing-powered)For Junit4, the UI-powered runners were removed and so far I haven't found a convenient solution to run new Junit4 tests on old swing-powered runner without additional libraries. But you can use JUnit 4 Extensions that provides a workaround to use junit.swingui.TestRunner. More here