Author: simonetripodi
Date: Fri Dec 9 19:46:42 2011
New Revision: 1212599
URL: http://svn.apache.org/viewvc?rev=1212599&view=rev
Log:
stripped @version javadoc tags from test classes (not used in main sources)
minor format
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/ExtendedBaseRulesTestCase.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NamedBean.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RegexRulesTestCase.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RuleTestCase.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RulesBaseTestCase.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestBean.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestEntityResolution.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/WithDefaultsRulesWrapperTestCase.java
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/substitution/VariableExpansionTestCase.java
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/DigesterTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
Fri Dec 9 19:46:42 2011
@@ -55,11 +55,9 @@ import org.xml.sax.helpers.AttributesImp
* Test Case for the Digester class. These tests exercise the individual
methods of a Digester, but do not attempt to
* process complete documents.
* </p>
- *
+ *
* @author Craig R. McClanahan
- * @version $Revision$ $Date$
*/
-
public class DigesterTestCase
{
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/ExtendedBaseRulesTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/ExtendedBaseRulesTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/ExtendedBaseRulesTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/ExtendedBaseRulesTestCase.java
Fri Dec 9 19:46:42 2011
@@ -31,11 +31,9 @@ import org.junit.Test;
/**
* <p>
* Runs standard tests for RulesBase as well as tests of extensions.
- *
+ *
* @author Robert Burrell Donkin <[email protected]>
- * @version $Revision$ $Date$
*/
-
public class ExtendedBaseRulesTestCase
extends RulesBaseTestCase
{
@@ -45,7 +43,7 @@ public class ExtendedBaseRulesTestCase
/**
* <p>
* This should be overriden by subclasses.
- *
+ *
* @return the matching rules to be tested.
*/
@Override
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NamedBean.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NamedBean.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NamedBean.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NamedBean.java
Fri Dec 9 19:46:42 2011
@@ -20,11 +20,9 @@ package org.apache.commons.digester3;
/**
* Very simple test bean
- *
+ *
* @author Robert Burrell Donkin
- * @version $Revision$ $Date$
*/
-
public class NamedBean
{
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
Fri Dec 9 19:46:42 2011
@@ -47,11 +47,9 @@ import org.xml.sax.SAXException;
/**
* <p>
* Test case for the <code>NodeCreateRule</code>.
- *
+ *
* @author Christopher Lenz
- * @version $Revision$ $Date$
*/
-
public class NodeCreateRuleTestCase
{
@@ -530,7 +528,7 @@ public class NodeCreateRuleTestCase
/**
* Return an appropriate InputStream for the specified test file (which
must be inside our current package.
- *
+ *
* @param name Name of the test file we want
* @exception IOException if an input/output error occurs
*/
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RegexRulesTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RegexRulesTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RegexRulesTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RegexRulesTestCase.java
Fri Dec 9 19:46:42 2011
@@ -30,11 +30,9 @@ import org.junit.Test;
/**
* Test case for RegexRules
- *
+ *
* @author Robert Burrell Donkin
- * @version $Revision$ $Date$
*/
-
public class RegexRulesTestCase
{
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RuleTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RuleTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RuleTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RuleTestCase.java
Fri Dec 9 19:46:42 2011
@@ -40,12 +40,10 @@ import org.xml.sax.SAXException;
* <p>
* Test Case for the Digester class. These tests perform parsing of XML
documents to exercise the built-in rules.
* </p>
- *
+ *
* @author Craig R. McClanahan
* @author Janek Bogucki
- * @version $Revision$ $Date$
*/
-
public class RuleTestCase
{
@@ -527,7 +525,7 @@ public class RuleTestCase
/**
* Return an appropriate InputStream for the specified test file (which
must be inside our current package.
- *
+ *
* @param name Name of the test file we want
* @exception IOException if an input/output error occurs
*/
@@ -541,7 +539,7 @@ public class RuleTestCase
/**
* Validate the assertions for ObjectCreateRule3.
- *
+ *
* @param root Root object returned by <code>digester.parse()</code>
*/
protected void validateObjectCreate3( Object root )
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RulesBaseTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RulesBaseTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RulesBaseTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/RulesBaseTestCase.java
Fri Dec 9 19:46:42 2011
@@ -36,11 +36,9 @@ import org.junit.Test;
* Test Case for the RulesBase matching rules. Most of this material was
original contained in the digester test case
* but was moved into this class so that extensions of the basic matching
rules behaviour can extend this test case.
* </p>
- *
+ *
* @author Craig R. McClanahan
- * @version $Revision$ $Date$
*/
-
public class RulesBaseTestCase
{
@@ -68,7 +66,7 @@ public class RulesBaseTestCase
/**
* <p>
* This should be overriden by subclasses.
- *
+ *
* @return the matching rules to be tested.
*/
protected Rules createMatchingRulesForTest()
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestBean.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestBean.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestBean.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestBean.java
Fri Dec 9 19:46:42 2011
@@ -25,9 +25,7 @@ import org.apache.commons.digester3.anno
* General purpose test bean for Digester tests.
*
* @author Craig R. McClanahan
- * @version $Revision$ $Date$
*/
-
public class TestBean
{
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestEntityResolution.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestEntityResolution.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestEntityResolution.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestEntityResolution.java
Fri Dec 9 19:46:42 2011
@@ -28,9 +28,8 @@ import org.xml.sax.helpers.DefaultHandle
/**
* Tests for entity resolution.
- *
+ *
* @author <a href='http://commons.apache.org/'>Apache Commons Team</a>
- * @version $Revision$
*/
public class TestEntityResolution
{
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
Fri Dec 9 19:46:42 2011
@@ -24,11 +24,9 @@ import org.apache.commons.digester3.Rule
/**
* RuleSet that mimics the rules set used for Employee and Address creation,
optionally associated with a particular
* namespace URI.
- *
+ *
* @author Craig R. McClanahan
- * @version $Revision$ $Date$
*/
-
public class TestRuleSet
extends RuleSetBase
{
@@ -47,7 +45,7 @@ public class TestRuleSet
/**
* Construct an instance of this RuleSet associated with the specified
prefix, associated with no namespace URI.
- *
+ *
* @param prefix Matching pattern prefix (must end with '/') or null.
*/
public TestRuleSet( String prefix )
@@ -59,7 +57,7 @@ public class TestRuleSet
/**
* Construct an instance of this RuleSet associated with the specified
prefix and namespace URI.
- *
+ *
* @param prefix Matching pattern prefix (must end with '/') or null.
* @param namespaceURI The namespace URI these rules belong to
*/
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/WithDefaultsRulesWrapperTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/WithDefaultsRulesWrapperTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/WithDefaultsRulesWrapperTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/WithDefaultsRulesWrapperTestCase.java
Fri Dec 9 19:46:42 2011
@@ -30,11 +30,9 @@ import org.junit.Test;
/**
* Test case for WithDefaultsRulesWrapper
- *
+ *
* @author Robert Burrell Donkin
- * @version $Revision$ $Date$
*/
-
public class WithDefaultsRulesWrapperTestCase
{
Modified:
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/substitution/VariableExpansionTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/substitution/VariableExpansionTestCase.java?rev=1212599&r1=1212598&r2=1212599&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/substitution/VariableExpansionTestCase.java
(original)
+++
commons/proper/digester/trunk/src/test/java/org/apache/commons/digester3/substitution/VariableExpansionTestCase.java
Fri Dec 9 19:46:42 2011
@@ -36,11 +36,9 @@ import org.xml.sax.SAXException;
/**
* <p>
* Test Case for the variable expansion facility in Digester.
- *
+ *
* @author Simon Kitching
- * @version $Revision$ $Date$
*/
-
public class VariableExpansionTestCase
{
@@ -69,7 +67,7 @@ public class VariableExpansionTestCase
/**
* Creates a Digester configured to show Ant-like capability.
- *
+ *
* @return a Digester with rules and variable substitutor
*/
private Digester createDigesterThatCanDoAnt()
@@ -278,7 +276,7 @@ public class VariableExpansionTestCase
* property could be expanded via a variable used either in an attribute
or in body text. This test shows that if
* properties were also set while processing a document, you could still
perform variable expansion (i.e. just like
* using the "property" task in Ant).
- *
+ *
* @throws IOException
* @throws SAXException
*/
@@ -305,7 +303,7 @@ public class VariableExpansionTestCase
* be expanded within a property element. This is thus effectively a
"closure" test, since it shows that the
* mechanism used to bind properties is also capable of having property
values that are driven by property
* variables.
- *
+ *
* @throws IOException
* @throws SAXException
*/