You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by lt...@apache.org on 2009/06/09 07:43:04 UTC

svn commit: r782884 - /maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/src/test/java/org/apache/maven/doxia/docrenderer/DocumentRendererTest.java

Author: ltheussl
Date: Tue Jun  9 05:43:03 2009
New Revision: 782884

URL: http://svn.apache.org/viewvc?rev=782884&view=rev
Log:
Move aggregate builds into separate tests so the docrenderer gets released properly.

Modified:
    maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/src/test/java/org/apache/maven/doxia/docrenderer/DocumentRendererTest.java

Modified: maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/src/test/java/org/apache/maven/doxia/docrenderer/DocumentRendererTest.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/src/test/java/org/apache/maven/doxia/docrenderer/DocumentRendererTest.java?rev=782884&r1=782883&r2=782884&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/src/test/java/org/apache/maven/doxia/docrenderer/DocumentRendererTest.java (original)
+++ maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/src/test/java/org/apache/maven/doxia/docrenderer/DocumentRendererTest.java Tue Jun  9 05:43:03 2009
@@ -38,7 +38,7 @@
 
     private File siteDirectoryFile;
 
-    /** {@inheritDoc} */
+    /** @throws java.lang.Exception */
     protected void setUp()
         throws Exception
     {
@@ -47,7 +47,7 @@
         siteDirectoryFile = getTestFile( "src/test/resources/site" );
     }
 
-    /** {@inheritDoc} */
+    /** @throws java.lang.Exception */
     protected void tearDown()
         throws Exception
     {
@@ -55,22 +55,32 @@
         super.tearDown();
     }
 
+    /** @throws java.lang.Exception */
     public void testFo()
         throws Exception
     {
         renderImpl( "fo" );
+    }
 
-        // TODO
-        // renderAggregatedImpl( "fo" );
+    /** @throws java.lang.Exception */
+    public void testFoAggregate()
+        throws Exception
+    {
+        renderAggregatedImpl( "fo" );
     }
 
+    /** @throws java.lang.Exception */
     public void testIText()
         throws Exception
     {
         renderImpl( "itext" );
+    }
 
-        // TODO
-        // renderAggregatedImpl( "itext" );
+    /** @throws java.lang.Exception */
+    public void testITextAggregate()
+        throws Exception
+    {
+        renderAggregatedImpl( "itext" );
     }
 
     private void renderImpl( String implementation )