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)
, 2003 1:16 PM To: [EMAIL PROTECTED] Subject: Junit test problem Hello all, I am very new to ant, I need some help please (I have searched the mail archive...), I am trying to run junit test using ant, in build.xml

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

Junit test problem

2003-06-06 Thread Joseph Yang
Hello all, I am very new to ant, I need some help please (I have searched the mail archive...), I am trying to run junit test using ant, in build.xml When I run the test, it k