You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm-commits@maven.apache.org by vs...@apache.org on 2008/08/29 01:02:27 UTC

svn commit: r690041 - /maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java

Author: vsiveton
Date: Thu Aug 28 16:02:26 2008
New Revision: 690041

URL: http://svn.apache.org/viewvc?rev=690041&view=rev
Log:
o improved javadoc

Modified:
    maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java

Modified: maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java
URL: http://svn.apache.org/viewvc/maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java?rev=690041&r1=690040&r2=690041&view=diff
==============================================================================
--- maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java (original)
+++ maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java Thu Aug 28 16:02:26 2008
@@ -35,10 +35,12 @@
  * </p>
  * <p/>
  * Basically all it does is to setup a default test enviroment
- * common for all tck tests. The default setup includes: <br>
- * 1. Delete all default locations (working copy, updating copy etc) <br>
- * 2. Initialize the repository <br>
- * 3. Check out the repository to the working copy<br>
+ * common for all tck tests. The default setup includes:
+ * <ol>
+ * <li>Delete all default locations (working copy, updating copy etc)</li>
+ * <li>Initialize the repository</li>
+ * <li>Check out the repository to the working copy</li>
+ * </ol>
  * </p>
  *
  * @author <a href="mailto:torbjorn@smorgrav.org">Torbj�rn Eikli Sm�rgrav</a>
@@ -53,6 +55,7 @@
 
     /**
      * @return A provider spesific and valid url for the repository
+     * @throws Exception if any
      */
     public abstract String getScmUrl()
         throws Exception;
@@ -83,6 +86,9 @@
      * The setup is also asserting on the existence of these files. <br>
      * This should only be used by this class (thus do not call this method from derived classes)
      * </p>
+     * <b>Note</b>: 'svnadmin' should be a system command.
+     *
+     * @throws Exception if any
      */
     public abstract void initRepo()
         throws Exception;