• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Problem with Ant using JUnit

 
Ranch Hand
Posts: 511
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello there,

I usually just run my JUnit 3.8.1 unit tests straight from Eclipse.

Figured that it would be a good practice to run my unit tests from Ant (that way other developers wouldn't have to depend on Eclipse)...

Here's what I did so far:



Now, when I tried to run this target, this is the error I got back:



What could I be possibly be doing wrong?

Sincerely,
 
Bartender
Posts: 2662
19
Netbeans IDE C++ Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You did not tell us your Ant version, but if its 1.6.x,
you can drop your junit jar in ant/lib folder, or add it to Ant's classpath.

In Ant 1.7 you can add junit.jar to the task's classpath.

Regards, Jan
 
Unnsse Khan
Ranch Hand
Posts: 511
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Jan,

The version of Ant I use is the 1.6.5, which comes bundled with Eclipse 3.2

When I checked out Preferences -> Ant -> Runtime, there was a ant-junit.jar file inside the library...

Obviously, this is not the same as junit.jar?

Thanks for the response!

Kindest regards,
 
Jan Cumps
Bartender
Posts: 2662
19
Netbeans IDE C++ Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ant-junit is the integration library that holds the classes used to integrate junit in ant.

But you still need junit.jar. It's documented on the JUnit task's library dependencies.

Regards, Jan
 
Getting married means "We're in love, so let's tell the police!" - and invite this tiny ad to the wedding:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic