I would like to run JUnit test cases from the command line. How can I do this?
If you project is ant based then you should be able to do something like this from the console:
ant test
If this doesn't work, but still your project is ant based, you can run ant -p to list the main targets of the project.
ant -p