2

i need to run the junit testsuite in unix box. I need make an executable jar file for invoking the test classes. Can any one suggest me how to do create the jar file with the test classes

Nate W.
  • 9,141
  • 6
  • 43
  • 65
priyasakthi
  • 21
  • 1
  • 2
  • It is not any different from making any other kind of executable jar. Don't forget to bundle the JUnit library and you probably need to write a small Main class to invoke the test runner. – Thilo Mar 15 '11 at 06:20
  • 1
    possible duplicate of [how to export (JUnit) test suite as executable jar](http://stackoverflow.com/questions/4648341/how-to-export-junit-test-suite-as-executable-jar) – Thilo Mar 15 '11 at 06:21

1 Answers1

3

I suggest you take a look at this post. It seems to cover your question.

If you don't know how to make a runnable jar, there are several quite easy ways to do that. The most comfortable is from your IDE. If you use eclipse, right-click on your project, select export and then, as runnable jar.

Community
  • 1
  • 1
kostja
  • 60,521
  • 48
  • 179
  • 224