Jul 8, 2005 #1 dexter195 Programmer Jun 18, 2003 220 EU is it possible to have ant to search through all the sub folders under a given directory, for the value Test*.java and run the tests? thanks for the help
is it possible to have ant to search through all the sub folders under a given directory, for the value Test*.java and run the tests? thanks for the help
Jul 11, 2005 #2 timw Programmer May 3, 2000 1,264 GB Have a look at http://ant.apache.org/manual/OptionalTasks/junit.html You can use filesets and pattern matching to locate the tests. Tim --------------------------- "Your morbid fear of losing, destroys the lives you're using." - Ozzy Upvote 0 Downvote
Have a look at http://ant.apache.org/manual/OptionalTasks/junit.html You can use filesets and pattern matching to locate the tests. Tim --------------------------- "Your morbid fear of losing, destroys the lives you're using." - Ozzy
Jul 11, 2005 Thread starter #3 dexter195 Programmer Jun 18, 2003 220 EU cheers tim that did the trick Upvote 0 Downvote