Author: jglick
Date: Sat Feb  6 00:44:01 2010
New Revision: 907142

URL: http://svn.apache.org/viewvc?rev=907142&view=rev
Log:
Updating @since, as there is no specific plan for merging to trunk.

Modified:
    
ant/core/branches/run-single-test-method/docs/manual/OptionalTasks/junit.html
    
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
    
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java
    
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java

Modified: 
ant/core/branches/run-single-test-method/docs/manual/OptionalTasks/junit.html
URL: 
http://svn.apache.org/viewvc/ant/core/branches/run-single-test-method/docs/manual/OptionalTasks/junit.html?rev=907142&r1=907141&r2=907142&view=diff
==============================================================================
--- 
ant/core/branches/run-single-test-method/docs/manual/OptionalTasks/junit.html 
(original)
+++ 
ant/core/branches/run-single-test-method/docs/manual/OptionalTasks/junit.html 
Sat Feb  6 00:44:01 2010
@@ -442,7 +442,7 @@
   <tr>
     <td valign="top">methods</td>
     <td valign="top">Comma-separated list of names of test case methods to 
execute.
-      <em>Since Ant 1.7.1</em>
+      <em>Since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/</em>
       <p>The <code>methods</code> attribute can be useful in the following 
scenarios:</p>
       <ul>
         <li>A test method has failed and you want to re-run the test method

Modified: 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
URL: 
http://svn.apache.org/viewvc/ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java?rev=907142&r1=907141&r2=907142&view=diff
==============================================================================
--- 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
 (original)
+++ 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
 Sat Feb  6 00:44:01 2010
@@ -1408,7 +1408,7 @@
      * @exception BuildException if some of the tests matching the described
      *                           conditions has invalid value of the
      *                           <code>methods</code> attribute
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     private void checkMethodLists() throws BuildException {
         if (tests.isEmpty()) {

Modified: 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java
URL: 
http://svn.apache.org/viewvc/ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java?rev=907142&r1=907141&r2=907142&view=diff
==============================================================================
--- 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java
 (original)
+++ 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java
 Sat Feb  6 00:44:01 2010
@@ -99,7 +99,7 @@
      * @param filtertrace if true filter stack traces.
      * @param methods if true run only test methods that failed during the
      *                previous run of the test suite
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     public JUnitTest(String name, boolean haltOnError, boolean haltOnFailure,
                      boolean filtertrace, String[] methods) {
@@ -116,7 +116,7 @@
      * @param value comma-separated list of names of individual test methods
      *              to be executed,
      *              or <code>null</code> if all test methods should be executed
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     public void setMethods(String value) {
         methodsList = value;
@@ -128,7 +128,7 @@
      * Sets names of individual test methods to be executed.
      * @param value non-empty array of names of test methods to be executed
      * @see #setMethods(String)
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     void setMethods(String[] value) {
         methods = value;
@@ -158,7 +158,7 @@
      *         specified, <code>false</code> otherwise
      * @see #setMethods(java.lang.String)
      * @see #setMethods(java.lang.String[])
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     boolean hasMethodsSpecified() {
         return methodsSpecified;
@@ -170,7 +170,7 @@
      * @return array of names of the individual test methods to be executed,
      *         or <code>null</code> if all test methods in the suite
      *         defined by the test class will be executed
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     String[] getMethods() {
         if (methodsSpecified && (methods == null)) {
@@ -185,7 +185,7 @@
      * @return the comma-separated list of test method names, or an empty
      *         string of no method is to be executed, or <code>null</code>
      *         if no method is specified
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     String getMethodsString() {
         if ((methodsList == null) && methodsSpecified) {
@@ -210,7 +210,7 @@
      * of the {...@link #methodsList} field, if it has not been computed yet.
      * @exception BuildException if the value of the {...@link #methodsList} 
field
      *                           was invalid
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     void resolveMethods() {
         if ((methods == null) && methodsSpecified) {
@@ -235,7 +235,7 @@
      *             a comma-separated list of valid Java identifiers;
      *             an empty string is acceptable and is handled as an empty
      *             list
-     * @since Ant 1.7.1
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     static String[] parseTestMethodNamesList(String methodNames)
                                             throws IllegalArgumentException {

Modified: 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java
URL: 
http://svn.apache.org/viewvc/ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java?rev=907142&r1=907141&r2=907142&view=diff
==============================================================================
--- 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java
 (original)
+++ 
ant/core/branches/run-single-test-method/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java
 Sat Feb  6 00:44:01 2010
@@ -222,7 +222,7 @@
      * @param haltOnFailure whether to stop the run if failure is found.
      * @param showOutput    whether to send output to System.out/.err as well 
as formatters.
      * @param logTestListenerEvents whether to print TestListener events.
-     * @since Ant 1.7
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     public JUnitTestRunner(JUnitTest test, String[] methods, boolean 
haltOnError,
                            boolean filtertrace, boolean haltOnFailure,
@@ -283,7 +283,7 @@
 
     /**
      * Constructor to use when the user has specified a classpath.
-     * @since Ant 1.7
+     * @since 
https://svn.apache.org/repos/asf/ant/core/branches/run-single-test-method/
      */
     public JUnitTestRunner(JUnitTest test, String[] methods, boolean 
haltOnError,
                            boolean filtertrace, boolean haltOnFailure,


Reply via email to