Reputation: 21
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
Upvotes: 2
Views: 9907
Reputation: 61578
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.
Upvotes: 3