Posted By:
Marvin_Humphrey
Posted On:
Tuesday, September 20, 2005 06:10 PM
Greets,
I'm working on some junit test cases for Lucene. I'd like to run just the one test I'm working on rather than the whole suite. I'm a Java newbie but a Perl oldbie, so here's what I'd do in Perl.
perl -Mblib t/just_this_test.t
There's also a way to do it with make:
make test TEST_FILES=t/just_this_test.t
How do I make this work in Ant?
Thanks!