Hello all,

I have this build file:

<project name="mytests" default="test">
  
  <path id="classpath.base">
  </path>
  <path id="classpath.test">
    <pathelement location="junit.jar" />
    <pathelement location="httpunit.jar" />
    <pathelement location="mytests.jar" />
    <pathelement location="js.jar" />
    <path refid="classpath.base" />
  </path>
  
  <target name="test" >
    <junit>
      <classpath refid="classpath.test" />

      <test name="com.mytests.test.AllTests" />
    </junit>
  </target>

  </project>

When I run it the output is:
Buildfile: build.xml

test:

And that is where it just stops...I can type stuff after test: but it
doesn't do anything...I then have to close the terminal to get
out....what am I doing wrong?  It shouldn't matter but I am keeping
all my tests in the mytest.jar file.

Thanks!

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to