Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Test Name: simpeltest.java

Location: com.prog.simpletest

import org.junit.test

public class simpletest
{
  @Test
  public void check()
  {
     assert(true);
  }
}

build.xml

how do I set this guy (build.xml) up to run the test?

share|improve this question
The class name cannot contain a dot(.) : public class simpletest.java. Remove the .java part from the class declaration. – Zabba Nov 2 '11 at 14:29
whoops typo, thanks Zabba – thatDudeThatDoesThatThing Nov 2 '11 at 14:31

3 Answers

You need to setup ant build properly. Have a build.properties file to declare common folders and then do something like this in your ant file..

 <target name="test.java" depends="build.java.src, build.java.test">
    <mkdir dir="${java.test.reports.path}" />
    <junit haltonfailure="no" printsummary="true">
      <classpath>
        <path refid="test.run.classpath" />
        <pathelement location = "${java.src.build.path}" />
      </classpath>
      <!-- add to see errors on console while running junit tests.
      <formatter type="brief" usefile="false" />    
      -->
      <formatter type="xml"/>
      <batchtest fork="yes" todir="${java.test.reports.path}">
        <fileset dir="${java.test.build.path}/">
          <include name="**/*Test*.class"/>
          <exclude name="**/*$*.class"/>
        </fileset>
      </batchtest>
    </junit>
  </target> 
share|improve this answer

Use the JUnit task.

share|improve this answer

This documentation for JUnit Task should be helpful. It is what I used to help me setup junit tests in Ant.

This is what my ant script basically looked like:

<junit fork="yes" forkmode="perBatch">
  <jvmarg value="-Xmx600M"/>
  <!-- other jvmargs -->

  <classpath>
    <pathelement path="${binariesPath}" />
    <pathelement path="${unitTestBinariesPath}" />
  </classpath>

  <batchtest todir="${dir.tmpBuildDir}\JUnitTest">
    <fileset dir="${dir.unitTestBinaries}">
      <include name="**/*Test.class" />
    </fileset>
  </batchtest>
</junit>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.