Update of /cvsroot/cweb/junit-ext/src/java/junit/extensions/proxy
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv30815/src/java/junit/extensions/proxy
Modified Files:
ProxyTestSuite.java
Log Message:
javadoc corrections.
Index: ProxyTestSuite.java
===================================================================
RCS file: /cvsroot/cweb/junit-ext/src/java/junit/extensions/proxy/ProxyTestSuite.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ProxyTestSuite.java 23 May 2006 16:06:05 -0000 1.5
--- ProxyTestSuite.java 20 Mar 2007 13:52:30 -0000 1.6
***************
*** 53,63 ****
/**
* <p>
! * A simple wrapper around {@link TestSuite}that permits the caller to specify
! * the delegate {@link Test}for either directly or recursively contained
! * {@link IProxyTest}s added to a {@linkProxyTestSuite}. There are three cases
* for junit:
* <ol>
* <li>An instantiated test. This is an instance of some class that extends
! * {@link TestCase}. If the class implements {@link IProxyTest}then the
* <i>delegate </i> will be set on the test instance and will be available when
* that test runs.</li>
--- 53,63 ----
/**
* <p>
! * A simple wrapper around {@link TestSuite} that permits the caller to specify
! * the delegate {@link Test} for either directly or recursively contained
! * {@link IProxyTest}s added to a {@link ProxyTestSuite}. There are three cases
* for junit:
* <ol>
* <li>An instantiated test. This is an instance of some class that extends
! * {@link TestCase}. If the class implements {@link IProxyTest} then the
* <i>delegate </i> will be set on the test instance and will be available when
* that test runs.</li>
***************
*** 70,74 ****
* indirectly to that {@link ProxyTestSuite}. The various constructors all
* invoke this method to flow down the delegate. In addition, the
! * {@link #addTest(TestSuite)}and {@link #addTestSuite(Class)}methods also
* invoke this method to flow down the delegate to instantiated tests that
* implement {@link IProxyTest}.</li>
--- 70,74 ----
* indirectly to that {@link ProxyTestSuite}. The various constructors all
* invoke this method to flow down the delegate. In addition, the
! * {@link #addTest(Test)} and {@link #addTestSuite(Class)} methods also
* invoke this method to flow down the delegate to instantiated tests that
* implement {@link IProxyTest}.</li>
|