This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
     new 7c58504  Javadoc.
7c58504 is described below

commit 7c585047ce70f0b2514c044e34fcb37079d542b2
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Mon Oct 21 09:42:55 2019 -0400

    Javadoc.
---
 .../commons/beanutils2/BeanComparatorTestCase.java | 24 +++++++++++-----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java 
b/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java
index e6574d6..7c2400f 100644
--- a/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java
@@ -40,7 +40,7 @@ public class BeanComparatorTestCase extends TestCase {
     // ---------------------------------------------------------- Constructors
 
     /**
-     * Construct a new instance of this test case.
+     * Constructs a new instance of this test case.
      *
      * @param name Name of the test case
      */
@@ -51,7 +51,7 @@ public class BeanComparatorTestCase extends TestCase {
     // -------------------------------------------------- Overall Test Methods
 
     /**
-     * Set up instance variables required by this test case.
+     * Sets up instance variables required by this test case.
      */
     @Override
     public void setUp() {
@@ -62,14 +62,14 @@ public class BeanComparatorTestCase extends TestCase {
 
 
     /**
-     * Return the tests included in this test suite.
+     * Returns the tests included in this test suite.
      */
     public static Test suite() {
         return new TestSuite(BeanComparatorTestCase.class);
     }
 
     /**
-     * Tear down instance variables required by this test case.
+     * Tears down instance variables required by this test case.
      */
     @Override
     public void tearDown() {
@@ -81,7 +81,7 @@ public class BeanComparatorTestCase extends TestCase {
     // ------------------------------------------------ Individual Test Methods
 
     /**
-     *  tests comparing two beans via their name using the default Comparator
+     *  Tests comparing two beans via their name using the default Comparator
      */
     public void testSimpleCompare() {
         final BeanComparator<AlphaBean, String> beanComparator = new 
BeanComparator<>(
@@ -92,7 +92,7 @@ public class BeanComparatorTestCase extends TestCase {
     }
 
     /**
-     *  tests comparing two beans via their name using the default Comparator, 
but the inverse
+     *  Tests comparing two beans via their name using the default Comparator, 
but the inverse
      */
     public void testSimpleCompareInverse() {
         final BeanComparator<AlphaBean, String> beanComparator = new 
BeanComparator<>(
@@ -103,7 +103,7 @@ public class BeanComparatorTestCase extends TestCase {
     }
 
     /**
-     *  tests comparing two beans via their name using the default Comparator 
where they have the same value.
+     *  Tests comparing two beans via their name using the default Comparator 
where they have the same value.
      */
     public void testCompareIdentical() {
         alphaBean1 = new AlphaBean("alphabean");
@@ -116,7 +116,7 @@ public class BeanComparatorTestCase extends TestCase {
     }
 
     /**
-     *  tests comparing one bean against itself.
+     *  Tests comparing one bean against itself.
      */
     public void testCompareBeanAgainstSelf() {
         final BeanComparator<AlphaBean, String> beanComparator = new 
BeanComparator<>(
@@ -127,7 +127,7 @@ public class BeanComparatorTestCase extends TestCase {
     }
 
     /**
-     *  tests comparing two beans via their name using the default Comparator, 
but with one of the beans
+     *  Tests comparing two beans via their name using the default Comparator, 
but with one of the beans
      *  being null.
      */
     public void testCompareWithNulls() {
@@ -143,7 +143,7 @@ public class BeanComparatorTestCase extends TestCase {
     }
 
     /**
-     *  tests comparing two beans who don't have a property
+     *  Tests comparing two beans who don't have a property
      */
     public void testCompareOnMissingProperty() {
         try {
@@ -159,7 +159,7 @@ public class BeanComparatorTestCase extends TestCase {
     }
 
     /**
-     *  tests comparing two beans on a boolean property, which is not possible.
+     *  Tests comparing two beans on a boolean property, which is not possible.
      */
     public void testCompareOnBooleanProperty() {
         try {
@@ -183,7 +183,7 @@ public class BeanComparatorTestCase extends TestCase {
     }
 
     /**
-     *  tests comparing two beans on a boolean property, then changing the 
property and testing
+     *  Tests comparing two beans on a boolean property, then changing the 
property and testing/
      */
     public void testSetProperty() {
         final TestBean testBeanA = new TestBean();

Reply via email to