You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/02/09 16:17:56 UTC

[commons-beanutils] 03/06: Rename test class to match class under test

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

commit eed83986f166793ca8b79e42f173bd956b52b962
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Feb 9 10:05:12 2023 -0500

    Rename test class to match class under test
---
 .../{BeanUtils2TestCase.java => BeanUtilsBean2TestCase.java}   | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/src/test/java/org/apache/commons/beanutils2/BeanUtils2TestCase.java b/src/test/java/org/apache/commons/beanutils2/BeanUtilsBean2TestCase.java
similarity index 97%
rename from src/test/java/org/apache/commons/beanutils2/BeanUtils2TestCase.java
rename to src/test/java/org/apache/commons/beanutils2/BeanUtilsBean2TestCase.java
index 7680f046..cb4baa51 100644
--- a/src/test/java/org/apache/commons/beanutils2/BeanUtils2TestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/BeanUtilsBean2TestCase.java
@@ -23,21 +23,17 @@ import junit.framework.TestSuite;
  * Test Case for the {@link BeanUtilsBean2}.
  *
  */
-public class BeanUtils2TestCase extends BeanUtilsBeanTestCase {
-
-
+public class BeanUtilsBean2TestCase extends BeanUtilsBeanTestCase {
 
     /**
      * Constructs a new instance of this test case.
      *
      * @param name Name of the test case
      */
-    public BeanUtils2TestCase(final String name) {
+    public BeanUtilsBean2TestCase(final String name) {
         super(name);
     }
 
-
-
     /**
      * Sets up instance variables required by this test case.
      */
@@ -52,7 +48,7 @@ public class BeanUtils2TestCase extends BeanUtilsBeanTestCase {
      * Creates the tests included in this test suite.
      */
     public static Test suite() {
-        return new TestSuite(BeanUtils2TestCase.class);
+        return new TestSuite(BeanUtilsBean2TestCase.class);
     }
 
     /**