preferably on test.classpath

Viel Gluck
Martin 
______________________________________________ 
Disclaimer and confidentiality note 
Everything in this e-mail and any attachments relates to the official business 
of Sender. This transmission is of a confidential nature and Sender does not 
endorse distribution to any party other than intended recipient. Sender does 
not necessarily endorse content contained within this transmission. 


> Subject: AW: java.lang.ClassNotFoundException" when running junit task
> Date: Thu, 28 Aug 2008 10:28:29 +0200
> From: [EMAIL PROTECTED]
> To: user@ant.apache.org
> 
>  You need junit.jar somewhere
> 
> 
> -- 
> Jürgen Knuplesch     
> Geschäftsführer: Uwe Seltmann
> HRB Stuttgart 17655
> USt-IdNr.: DE 811944121 
> -----Ursprüngliche Nachricht-----
> Von: JOMO00 [mailto:[EMAIL PROTECTED] 
> Gesendet: Donnerstag, 28. August 2008 09:06
> An: user@ant.apache.org
> Betreff: Re: java.lang.ClassNotFoundException" when running junit task
> 
> 
> Hi All,
> I read just read the thread below. Ich have the same Exception by unsing ant 
> and <junit>. I know there is a problem with the classpath, but I don't know 
> what is wrong. Which *jar files do I need an my classpath?Here my script
> 
> <property name="test.class.name" value="JUnit.junit.samples.AllTests" />
>       
> <path id="test.classpath">
>       <fileset dir="${destpath}/${outputDir}">
>           <include name="*.jar" /> 
>           </fileset>
>       <fileset dir="C:/Documents and Settings/heinrich">
>          <include name="**/*.jar" /> 
>       </fileset>
> </path>
> 
> <target name="test" depends="compile">
> <junit printsummary="${printsummary}" fork="no" haltonfailure="yes">
>      <classpath refid="test.classpath" /> 
>      <test name="${test.class.name}" />  
>      <formatter type="plain" usefile="false" /> </junit> </target> 
> 
> My Error in detail is: 
>  
>  [junit] Running JUnit.junit.samples.AllTests
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
>     [junit] Testsuite: JUnit.junit.samples.AllTests
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
>     [junit] Caused an ERROR
>     [junit] JUnit.junit.samples.AllTests
>     [junit] java.lang.ClassNotFoundException: JUnit.junit.samples.AllTests
>     [junit] at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
>     [junit] at java.security.AccessController.doPrivileged(Native Method)
>     [junit] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
>     [junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
>     [junit] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
>     [junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
>     [junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
>     [junit] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
>     [junit] at java.lang.Class.forName0(Native Method)
>     [junit] at java.lang.Class.forName(Class.java:247)
>     [junit] at
> org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
>     [junit] at
> org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
>     [junit] at
> org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
>       
> Thank you for your help!
> JOMO00
>  
> 
> venkata prasad wrote:
> > 
> > Hi All,
> > 
> > I am getting the below error while execting junit task.
> > 
> > 
> > 
> > Testsuite: BaseServiceCommunicationManagerTest
> > 
> > Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
> > 
> > 
> > 
> >            Caused an ERROR
> > 
> > BaseServiceCommunicationManagerTest
> > 
> > java.lang.ClassNotFoundException: BaseServiceCommunicationManagerTest
> > 
> >            at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
> > 
> >            at java.security.AccessController.doPrivileged(Native 
> > Method)
> > 
> >            at 
> > java.net.URLClassLoader.findClass(URLClassLoader.java:188)
> > 
> >            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
> > 
> >            at
> > sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
> > 
> >            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
> > 
> >            at
> > java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
> > 
> >            at java.lang.Class.forName0(Native Method)
> > 
> >            at java.lang.Class.forName(Class.java:164)
> > 
> > 
> > 
> > Below is the build script.
> > 
> > 
> > 
> > 
> > 
> > <project name="testing" default="junit.tool" basedir=".">
> > 
> > 
> > 
> > 
> > 
> >  <path id="depends.jar.path">
> > 
> >        <fileset dir="C:\ccviews\build_dynapp-1111\vbocig-dynapp"
> > includes="**/*.jar"/>
> > 
> >        <fileset dir="./output" includes="DAWS.ear"/>
> > 
> >        <fileset dir="./output" includes="Dynapps.war"/>
> > 
> >        <fileset dir="D:/ERA/tools/junit4.4" includes="junit-4.4.jar"/>
> > 
> > 
> > 
> >        <fileset dir="D:\bea\weblogic92\server\lib" 
> > includes="weblogic.jar "/>
> > 
> >  </path>
> > 
> > 
> > 
> > <target name="junit.tool">
> > 
> > <junit  printsummary="yes" showoutput="yes" haltonfailure="true"
> > fork="yes">
> > 
> > 
> > 
> >   <classpath refid="depends.jar.path"/>
> > 
> >   <formatter type="plain"/>
> > 
> > 
> > 
> > <batchtest fork="yes" todir="./junit">
> > 
> >            <fileset
> > dir="./output/DynappsEar/WEB-INF/classes/com/cig/dynapp/test">
> > 
> >                        <include name="
> > BaseServiceCommunicationManagerTest.class"/>
> > 
> >            </fileset>
> > 
> >   </batchtest>
> > 
> > 
> > 
> >  </junit>
> > 
> > </target>
> > 
> > </project>
> > 
> > 
> > 
> > I am running at ant-1.7 and junit-4.4.
> > 
> > 
> > 
> > 
> > 
> > Thanks,
> > 
> > Prasad
> > 
> > 
> 
> --
> View this message in context: 
> http://www.nabble.com/java.lang.ClassNotFoundException%22-when-running-junit-task-tp14167580p19195253.html
> Sent from the Ant - Users mailing list archive at Nabble.com.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

_________________________________________________________________
Talk to your Yahoo! Friends via Windows Live Messenger.  Find out how.
http://www.windowslive.com/explore/messenger?ocid=TXT_TAGLM_WL_messenger_yahoo_082008

Reply via email to