RE: [Junit] How to handle TestSuites correctly

2007-03-26 Thread Anton Vodonosov
>>> From what I understand from documentation, it is impossible >>> to create Resource Collection based on classpath. Am I right? >>> > >> that's right, because there is nothing in the Java API to enum all >> classes in a package. > > Yes, but it is possible to analyze classpath programmatically

RE: [Junit] How to handle TestSuites correctly

2007-02-28 Thread Anton Vodonosov
>> From what I understand from documentation, it is impossible >> to create Resource Collection based on classpath. Am I right? >> >that's right, because there is nothing in the Java API to enum all >classes in a package. Yes, but it is possible to analyze classpath programmatically: for jars

Re: [Junit] How to handle TestSuites correctly

2007-02-27 Thread Anton Vodonosov
Hi, All. I want to run many unit tests I have, but without adding all them manually to ant script. The best way for me is using TestSuite, because it gives maximum flexibility and simplicity comparing to ant scripts. But unfortunately junit task removes original class names of classes added t