Re: Junit test problem

2003-06-06 Thread Erik Husby
r file bug reports on this problem, nor email the Ant mailing lists, until all of these causes have been explored, as this is not an Ant bug. -Original Message- From: Erik Husby [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 11:29 AM To: Ant Users List Subject: Re: Junit test problem

RE: Junit test problem

2003-06-06 Thread Joseph Yang
have been explored, as this is not an Ant bug. -Original Message- From: Erik Husby [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 11:29 AM To: Ant Users List Subject: Re: Junit test problem You have a classpath problem. Your class is in a package called "teluswonderland&

RE: Junit test problem

2003-06-06 Thread Gould, Troy (ELS)
I believe the problem is that you are only including .class files from the {basedir}/test directory and not all subdirectories of {basedir}/test Your tag should be Try that. That should be it. -Original Message- From: Joseph Yang [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 200

Re: Junit test problem

2003-06-06 Thread Erik Husby
You have a classpath problem. Your class is in a package called "teluswonderland" therefore your classpath should reference a directory that contains the directory "teluswonderland". One does not put class files in a classpath. One puts directories that contain classes and one puts jar/zip file

Re: Junit test problem

2003-06-06 Thread Sebastien Blanc
Hi ! the junit task is not finding your test class in the classpath attribute. you can launch ANT in verbose mode (-v) or do an before your call, to check that the test.path is correctly defined (either in terms of directory or package name). seb. Joseph Yang wrote: > Hello all, > > I am very n