move the listeners to a separate package

git-svn-id: https://svn.apache.org/repos/asf/ant/antlibs/antunit/trunk@433143 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Bodewig 2006-08-21 04:01:26 +00:00
parent 89c2737633
commit ecc39c666a
4 changed files with 12 additions and 6 deletions

View File

@ -28,10 +28,10 @@ under the License.
classname="org.apache.ant.antunit.ExpectFailureTask"/>
<typedef name="plainlistener"
classname="org.apache.ant.antunit.PlainAntUnitListener"/>
classname="org.apache.ant.antunit.listener.PlainAntUnitListener"/>
<typedef name="xmllistener"
classname="org.apache.ant.antunit.XMLAntUnitListener"/>
classname="org.apache.ant.antunit.listener.XMLAntUnitListener"/>
<typedef name="logcapturer"
classname="org.apache.ant.antunit.LogCapturer"/>

View File

@ -18,7 +18,7 @@
*
*/
package org.apache.ant.antunit;
package org.apache.ant.antunit.listener;
import java.io.IOException;
import java.io.File;
@ -28,6 +28,9 @@ import java.io.PrintWriter;
import java.io.StringWriter;
import java.text.NumberFormat;
import org.apache.ant.antunit.AntUnitListener;
import org.apache.ant.antunit.AssertionFailedException;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.ProjectComponent;

View File

@ -18,13 +18,15 @@
*
*/
package org.apache.ant.antunit;
package org.apache.ant.antunit.listener;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.StringWriter;
import org.apache.ant.antunit.AssertionFailedException;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;

View File

@ -18,7 +18,7 @@
*
*/
package org.apache.ant.antunit;
package org.apache.ant.antunit.listener;
import java.io.IOException;
import java.io.OutputStream;
@ -28,6 +28,8 @@ import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Date;
import org.apache.ant.antunit.AssertionFailedException;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.taskdefs.optional.junit.XMLConstants;
@ -39,7 +41,6 @@ import org.apache.tools.ant.util.StringUtils;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
/**
* A test listener for &lt;antunit&gt; modelled after the XML JUnit
* test listener that is part of Ant.