You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2004/02/19 00:22:30 UTC

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang/builder MultiLineToStringStyleTest.java

ggregory    2004/02/18 15:22:30

  Modified:    lang/src/test/org/apache/commons/lang/exception
                        ExceptionUtilsTestCase.java
                        NestableRuntimeExceptionTestCase.java
               lang/src/test/org/apache/commons/lang/enum
                        ValuedEnumTest.java
               lang/src/test/org/apache/commons/lang AllLangTestSuite.java
                        UnhandledExceptionTest.java ClassUtilsTest.java
                        NumberRangeTest.java
               lang/src/java/org/apache/commons/lang/builder
                        ReflectionToStringBuilder.java
               lang/src/test/org/apache/commons/lang/math
                        NumberUtilsTest.java
               lang/src/test/org/apache/commons/lang/builder
                        MultiLineToStringStyleTest.java
  Log:
  Organize Imports.
  
  Revision  Changes    Path
  1.12      +1 -2      jakarta-commons/lang/src/test/org/apache/commons/lang/exception/ExceptionUtilsTestCase.java
  
  Index: ExceptionUtilsTestCase.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/exception/ExceptionUtilsTestCase.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ExceptionUtilsTestCase.java	18 Feb 2004 23:02:15 -0000	1.11
  +++ ExceptionUtilsTestCase.java	18 Feb 2004 23:22:29 -0000	1.12
  @@ -22,10 +22,9 @@
   import java.lang.reflect.InvocationTargetException;
   import java.sql.SQLException;
   
  -import org.apache.commons.lang.SystemUtils;
  -
   import junit.framework.Test;
   import junit.framework.TestSuite;
  +import org.apache.commons.lang.SystemUtils;
   
   /**
    * Tests {@link org.apache.commons.lang.exception.ExceptionUtils}.
  
  
  
  1.11      +2 -1      jakarta-commons/lang/src/test/org/apache/commons/lang/exception/NestableRuntimeExceptionTestCase.java
  
  Index: NestableRuntimeExceptionTestCase.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/exception/NestableRuntimeExceptionTestCase.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- NestableRuntimeExceptionTestCase.java	18 Feb 2004 23:02:15 -0000	1.10
  +++ NestableRuntimeExceptionTestCase.java	18 Feb 2004 23:22:29 -0000	1.11
  @@ -17,6 +17,7 @@
   
   import java.io.ByteArrayOutputStream;
   import java.io.PrintStream;
  +
   import junit.framework.Test;
   import junit.framework.TestSuite;
   import junit.textui.TestRunner;
  
  
  
  1.7       +1 -2      jakarta-commons/lang/src/test/org/apache/commons/lang/enum/ValuedEnumTest.java
  
  Index: ValuedEnumTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/enum/ValuedEnumTest.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ValuedEnumTest.java	18 Feb 2004 23:01:51 -0000	1.6
  +++ ValuedEnumTest.java	18 Feb 2004 23:22:29 -0000	1.7
  @@ -22,7 +22,6 @@
   import junit.framework.Test;
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
  -
   import org.apache.commons.lang.SerializationUtils;
   
   /**
  
  
  
  1.5       +1 -2      jakarta-commons/lang/src/test/org/apache/commons/lang/AllLangTestSuite.java
  
  Index: AllLangTestSuite.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/AllLangTestSuite.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AllLangTestSuite.java	18 Feb 2004 23:06:19 -0000	1.4
  +++ AllLangTestSuite.java	18 Feb 2004 23:22:29 -0000	1.5
  @@ -19,7 +19,6 @@
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
   import junit.textui.TestRunner;
  -
   import org.apache.commons.lang.builder.BuilderTestSuite;
   import org.apache.commons.lang.enum.EnumTestSuite;
   import org.apache.commons.lang.exception.ExceptionTestSuite;
  
  
  
  1.4       +1 -2      jakarta-commons/lang/src/test/org/apache/commons/lang/UnhandledExceptionTest.java
  
  Index: UnhandledExceptionTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/UnhandledExceptionTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UnhandledExceptionTest.java	18 Feb 2004 23:06:19 -0000	1.3
  +++ UnhandledExceptionTest.java	18 Feb 2004 23:22:29 -0000	1.4
  @@ -19,7 +19,6 @@
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
   import junit.textui.TestRunner;
  -
   import org.apache.commons.lang.exception.Nestable;
   
   /**
  
  
  
  1.11      +1 -4      jakarta-commons/lang/src/test/org/apache/commons/lang/ClassUtilsTest.java
  
  Index: ClassUtilsTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/ClassUtilsTest.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ClassUtilsTest.java	18 Feb 2004 23:06:19 -0000	1.10
  +++ ClassUtilsTest.java	18 Feb 2004 23:22:29 -0000	1.11
  @@ -16,8 +16,6 @@
   package org.apache.commons.lang;
   
   import java.lang.reflect.Constructor;
  -import java.lang.reflect.InvocationTargetException;
  -import java.lang.reflect.Method;
   import java.lang.reflect.Modifier;
   import java.net.URLClassLoader;
   import java.util.ArrayList;
  @@ -29,7 +27,6 @@
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
   import junit.textui.TestRunner;
  -import org.apache.commons.lang.enum.ColorEnum;
   
   /**
    * Unit tests {@link org.apache.commons.lang.ClassUtils}.
  
  
  
  1.8       +1 -3      jakarta-commons/lang/src/test/org/apache/commons/lang/NumberRangeTest.java
  
  Index: NumberRangeTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/NumberRangeTest.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- NumberRangeTest.java	18 Feb 2004 23:06:19 -0000	1.7
  +++ NumberRangeTest.java	18 Feb 2004 23:22:29 -0000	1.8
  @@ -15,8 +15,6 @@
    */
   package org.apache.commons.lang;
   
  -import java.math.BigDecimal;
  -
   import junit.framework.Test;
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
  
  
  
  1.18      +1 -0      jakarta-commons/lang/src/java/org/apache/commons/lang/builder/ReflectionToStringBuilder.java
  
  Index: ReflectionToStringBuilder.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/builder/ReflectionToStringBuilder.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- ReflectionToStringBuilder.java	18 Feb 2004 22:53:24 -0000	1.17
  +++ ReflectionToStringBuilder.java	18 Feb 2004 23:22:30 -0000	1.18
  @@ -20,6 +20,7 @@
   import java.lang.reflect.Modifier;
   import java.util.HashSet;
   import java.util.Set;
  +
   import org.apache.commons.lang.ClassUtils;
   
   /**
  
  
  
  1.12      +1 -2      jakarta-commons/lang/src/test/org/apache/commons/lang/math/NumberUtilsTest.java
  
  Index: NumberUtilsTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/math/NumberUtilsTest.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- NumberUtilsTest.java	18 Feb 2004 23:02:38 -0000	1.11
  +++ NumberUtilsTest.java	18 Feb 2004 23:22:30 -0000	1.12
  @@ -24,7 +24,6 @@
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
   import junit.textui.TestRunner;
  -
   import org.apache.commons.lang.SystemUtils;
   
   /**
  
  
  
  1.8       +1 -2      jakarta-commons/lang/src/test/org/apache/commons/lang/builder/MultiLineToStringStyleTest.java
  
  Index: MultiLineToStringStyleTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/test/org/apache/commons/lang/builder/MultiLineToStringStyleTest.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- MultiLineToStringStyleTest.java	18 Feb 2004 23:00:51 -0000	1.7
  +++ MultiLineToStringStyleTest.java	18 Feb 2004 23:22:30 -0000	1.8
  @@ -22,7 +22,6 @@
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
   import junit.textui.TestRunner;
  -
   import org.apache.commons.lang.SystemUtils;
   
   /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org