Re: Recursive file matching

2005-07-21 Thread Daniel Blaukopf
You can do it without ant-contrib: to="*Test.class"/> Juergen Hermann wrote: On Fri, 22 Jul 2005 03:40:36 +0200, Danilo B

Re: Recursive file matching

2005-07-21 Thread Juergen Hermann
On Fri, 22 Jul 2005 03:40:36 +0200, Danilo Buerger wrote: >is it possible to make sure that for each class a corresponding unit >test class exist? For example: >For these two classes: >/xyz/main.class >/xyz/whatever.class define this as a fileset, use a to map to the test files, iterate over

Recursive file matching

2005-07-21 Thread Danilo Buerger
Hey everybody, is it possible to make sure that for each class a corresponding unit test class exist? For example: For these two classes: /xyz/main.class /xyz/whatever.class these two classes must exist: /abc/mainTest.class /abc/whateverTest.class else Build Fail. Thanks in advance.