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 )