You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2009/01/28 06:10:54 UTC

svn commit: r738367 - /ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/AntUnitExecutionPlatform.java

Author: bodewig
Date: Wed Jan 28 05:10:54 2009
New Revision: 738367

URL: http://svn.apache.org/viewvc?rev=738367&view=rev
Log:
untabify

Modified:
    ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/AntUnitExecutionPlatform.java

Modified: ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/AntUnitExecutionPlatform.java
URL: http://svn.apache.org/viewvc/ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/AntUnitExecutionPlatform.java?rev=738367&r1=738366&r2=738367&view=diff
==============================================================================
--- ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/AntUnitExecutionPlatform.java (original)
+++ ant/antlibs/antunit/trunk/src/main/org/apache/ant/antunit/AntUnitExecutionPlatform.java Wed Jan 28 05:10:54 2009
@@ -25,41 +25,41 @@
 import org.apache.tools.ant.Project;
 
 /** 
- * Provides methods that allow the AntUnitScriptRunner to interact with the environment
- * in which it executes.
+ * Provides methods that allow the AntUnitScriptRunner to interact
+ * with the environment in which it executes.
  */
 public interface AntUnitExecutionPlatform {
 
-	/**
-	 * Creates a new project instance and configures it.
-	 * @param f the File for which to create a Project.
-	 */
-	public Project createProjectForFile(File f);
-
-	/**
-	 * invokes start on all registered test listeners.
-	 * @param targetName the name of the target.
-	 */
-	public void fireStartTest(String targetName);
-
-	/**
-	 * invokes addFailure on all registered test listeners.
-	 * @param targetName the name of the failed target.
-	 * @param ae the associated AssertionFailedException.
-	 */
-	public void fireFail(String targetName, AssertionFailedException ae);
-
-	/**
-	 * invokes addError on all registered test listeners.
-	 * @param targetName the name of the failed target.
-	 * @param t the associated Throwable.
-	 */
-	public void fireError(String targetName, Throwable t);
-
-	/**
-	 * invokes endTest on all registered test listeners.
-	 * @param targetName the name of the current target.
-	 */
-	public void fireEndTest(String targetName);
+    /**
+     * Creates a new project instance and configures it.
+     * @param f the File for which to create a Project.
+     */
+    public Project createProjectForFile(File f);
+
+    /**
+     * invokes start on all registered test listeners.
+     * @param targetName the name of the target.
+     */
+    public void fireStartTest(String targetName);
+
+    /**
+     * invokes addFailure on all registered test listeners.
+     * @param targetName the name of the failed target.
+     * @param ae the associated AssertionFailedException.
+     */
+    public void fireFail(String targetName, AssertionFailedException ae);
+
+    /**
+     * invokes addError on all registered test listeners.
+     * @param targetName the name of the failed target.
+     * @param t the associated Throwable.
+     */
+    public void fireError(String targetName, Throwable t);
+
+    /**
+     * invokes endTest on all registered test listeners.
+     * @param targetName the name of the current target.
+     */
+    public void fireEndTest(String targetName);
 
 }