Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to run Junit testcases from command line?

How to run the junit from command line in linux.

share|improve this question

marked as duplicate by balpha Apr 20 '11 at 10:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Here you will find a way to do that.

As stated on JUnit FAQ:

How do I run JUnit from my command window?

  1. Set your CLASSPATH

  2. Invoke the runner by "java org.junit.runner.JUnitCore (test class name)"

share|improve this answer
I did this but getting some main class not found error for org.junit.runner.JUnitCore – Ammu Apr 19 '11 at 10:55
Are you sure your classpath is correct? – Harry Joy Apr 19 '11 at 10:57
yes....The path in which my junit-3.8.1.jar is /home/myname/myroot/.m2/repository/junit/junit/3.8.1/ and i have added it to my class path so that when i do echo $CLASSPATH i get /home/myname/myroot/.m2/repository/junit/junit/3.8.1/junit-3.8.1.jar – Ammu Apr 19 '11 at 11:05
What is the complete error? – Harry Joy Apr 19 '11 at 11:09
@Ammu:- Make sure you are running .class file and not the .java file.\ – Harry Joy Apr 19 '11 at 11:37
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.