Browse Source

Fix Javadoc

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271287 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
f4a6e35f35
1 changed files with 3 additions and 6 deletions
  1. +3
    -6
      proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestRunner.java

+ 3
- 6
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestRunner.java View File

@@ -233,7 +233,7 @@ public class TestRunner implements TestListener {


/** /**
* Initialize the TestRunner from properties. * Initialize the TestRunner from properties.
* @param the properties containing configuration data.
* @param props the properties containing configuration data.
* @see #init(String[]) * @see #init(String[])
*/ */
protected void init(Properties props) { protected void init(Properties props) {
@@ -300,9 +300,6 @@ public class TestRunner implements TestListener {
return suites; return suites;
} }


/**
* @param testClassNames String array of full qualified class names of test classes
*/
private void runTests() throws Exception { private void runTests() throws Exception {


Map suites = getSuites(); Map suites = getSuites();
@@ -447,7 +444,7 @@ public class TestRunner implements TestListener {


/** /**
* this implementation is for JUnit < 3.4 * this implementation is for JUnit < 3.4
* @see addFailure(Test, Throwable)
* @see #addFailure(Test, Throwable)
*/ */
public void addFailure(Test test, AssertionFailedError afe) { public void addFailure(Test test, AssertionFailedError afe) {
addFailure(test, (Throwable) afe); addFailure(test, (Throwable) afe);
@@ -455,7 +452,7 @@ public class TestRunner implements TestListener {


/** /**
* This implementation is for JUnit <= 3.4 * This implementation is for JUnit <= 3.4
* @see addFailure(Test, AssertionFailedError)
* @see #addFailure(Test, AssertionFailedError)
*/ */
public void addFailure(Test test, Throwable t) { public void addFailure(Test test, Throwable t) {
String testName = test.toString(); String testName = test.toString();


Loading…
Cancel
Save