Author: vsiveton
Date: Tue Sep 11 16:37:18 2007
New Revision: 574728

URL: http://svn.apache.org/viewvc?rev=574728&view=rev
Log:
o fixed tearDown()
o updated javadoc 

Modified:
    
maven/plugins/trunk/maven-javadoc-plugin/src/test/java/org/apache/maven/plugin/javadoc/JavadocReportTest.java

Modified: 
maven/plugins/trunk/maven-javadoc-plugin/src/test/java/org/apache/maven/plugin/javadoc/JavadocReportTest.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/test/java/org/apache/maven/plugin/javadoc/JavadocReportTest.java?rev=574728&r1=574727&r2=574728&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-javadoc-plugin/src/test/java/org/apache/maven/plugin/javadoc/JavadocReportTest.java
 (original)
+++ 
maven/plugins/trunk/maven-javadoc-plugin/src/test/java/org/apache/maven/plugin/javadoc/JavadocReportTest.java
 Tue Sep 11 16:37:18 2007
@@ -55,14 +55,13 @@
     protected void tearDown()
         throws Exception
     {
-        // nop
+        super.tearDown();
     }
 
     /**
      * Create test repository in target directory.
      *
-     * @throws IOException
-     *             if any
+     * @throws IOException if any
      */
     private void createTestRepo()
         throws IOException
@@ -171,7 +170,7 @@
     /**
      * Test when default configuration is provided for the plugin
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testDefaultConfiguration()
         throws Exception
@@ -259,7 +258,7 @@
     /**
      * Method for testing the subpackages and excludePackageNames parameter
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testSubpackages()
         throws Exception
@@ -299,7 +298,7 @@
     /**
      * Test the recursion and exclusion of the doc-files subdirectories.
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testDocfiles()
         throws Exception
@@ -330,9 +329,10 @@
     }
 
     /**
-     * Test javadoc plugin using custom configuration. noindex, notree and 
nodeprecated parameters were set to true
+     * Test javadoc plugin using custom configuration. noindex, notree and 
nodeprecated parameters
+     * were set to true.
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testCustomConfiguration()
         throws Exception
@@ -407,7 +407,7 @@
     /**
      * Method to test the doclet artifact configuration
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testDoclets()
         throws Exception
@@ -451,7 +451,7 @@
     /**
      * Method to test the aggregate parameter
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testAggregate()
         throws Exception
@@ -500,7 +500,7 @@
     /**
      * Method to test when the path to the project sources has an apostrophe 
(')
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testQuotedPath()
         throws Exception
@@ -570,7 +570,7 @@
     /**
      * Method to test the taglet artifact configuration
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testTaglets()
         throws Exception
@@ -595,7 +595,7 @@
     /**
      * Method to test the jdk5 javadoc
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testJdk5()
         throws Exception
@@ -632,7 +632,7 @@
      * Test to find the javadoc executable when <code>java.home</code> is not 
in the JDK_HOME. In this case, try to
      * use the <code>JAVA_HOME</code> environment variable.
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testToFindJavadoc()
         throws Exception
@@ -650,7 +650,7 @@
     /**
      * Test the javadoc resources.
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testJavadocResources()
         throws Exception
@@ -682,7 +682,7 @@
     /**
      * Test the javadoc resources in the aggregation case.
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testAggregateJavadocResources()
         throws Exception
@@ -724,7 +724,7 @@
     /**
      * Test the javadoc for a POM project.
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testPom()
         throws Exception
@@ -739,7 +739,7 @@
     /**
      * Test the javadoc with tag.
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testTag()
         throws Exception
@@ -761,7 +761,7 @@
     /**
      * Test newline in the header/footer parameter
      *
-     * @throws Exception
+     * @throws Exception if any
      */
     public void testHeaderFooter()
         throws Exception


Reply via email to