>From Ant's very own build.xml:

  <target name="run-single-test" if="testcase" depends="compile-tests">

    <junit printsummary="no" haltonfailure="yes" fork="${junit.fork}">
      <sysproperty key="build.tests" value="${build.tests}"/>
      <classpath location="${java.home}/lib/classes.zip" />
      <classpath refid="tests-classpath"/>
      <formatter type="plain" usefile="false" />
      <test name="${testcase}" />
    </junit>
  </target>

And its run like this:

    ant run-single-test -Dtestcase=<fully qualified classname>



----- Original Message ----- 
From: "Eddie Espino" <[EMAIL PROTECTED]>
To: "Ant-User@Jakarta. Apache. Org (E-mail)" <[EMAIL PROTECTED]>
Sent: Monday, October 22, 2001 5:43 PM
Subject: Junit Options ... question


Is it easily to execute a single test within a Testcase from an Ant
file?  I would like to pass in argument specifying the TestCase class
and test method to invoke.  I would rather not have to update an
AllTests suite wrapper.  I can't seem to see how one would set this up.
Any pointers, are greatly appreciated.
 
Regards,
-=eddie
 
  _____  

Eddie Espino 
  _____  

Tascola, Inc.
12647 Alcosta Blvd., Suite 350
San Ramon, CA 94583
Phone: (925) 244.9893
Cell: (925) 437-3734
Fax: (925) 244-6781
www.Tascola.com <http://www.tascola.com/> 
 


Reply via email to