Organize Imports.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137803 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
080c7fe51f
commit
501f19cf0c
|
@ -20,6 +20,7 @@ import java.lang.reflect.Field;
|
|||
import java.lang.reflect.Modifier;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import org.apache.commons.lang.ClassUtils;
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,7 +19,6 @@ import junit.framework.Test;
|
|||
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;
|
||||
|
@ -30,7 +29,7 @@ import org.apache.commons.lang.time.TimeTestSuite;
|
|||
* Test suite for [lang].
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
* @version $Id: AllLangTestSuite.java,v 1.4 2004/02/18 23:06:19 ggregory Exp $
|
||||
* @version $Id: AllLangTestSuite.java,v 1.5 2004/02/18 23:22:29 ggregory Exp $
|
||||
*/
|
||||
public class AllLangTestSuite extends TestCase {
|
||||
|
||||
|
|
|
@ -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,14 +27,13 @@ import junit.framework.Test;
|
|||
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}.
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
* @author Gary D. Gregory
|
||||
* @version $Id: ClassUtilsTest.java,v 1.10 2004/02/18 23:06:19 ggregory Exp $
|
||||
* @version $Id: ClassUtilsTest.java,v 1.11 2004/02/18 23:22:29 ggregory Exp $
|
||||
*/
|
||||
public class ClassUtilsTest extends TestCase {
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
@ -27,7 +25,7 @@ import junit.framework.TestSuite;
|
|||
* @author <a href="mailto:chrise@esha.com">Christopher Elkins</a>
|
||||
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
|
||||
* @author Tim O'Brien
|
||||
* @version $Revision: 1.7 $ $Date: 2004/02/18 23:06:19 $
|
||||
* @version $Revision: 1.8 $ $Date: 2004/02/18 23:22:29 $
|
||||
*/
|
||||
|
||||
public final class NumberRangeTest extends TestCase {
|
||||
|
|
|
@ -19,14 +19,13 @@ import junit.framework.Test;
|
|||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
import junit.textui.TestRunner;
|
||||
|
||||
import org.apache.commons.lang.exception.Nestable;
|
||||
|
||||
/**
|
||||
* JUnit tests.
|
||||
*
|
||||
* @author Matthew Hawthorne
|
||||
* @version $Id: UnhandledExceptionTest.java,v 1.3 2004/02/18 23:06:19 ggregory Exp $
|
||||
* @version $Id: UnhandledExceptionTest.java,v 1.4 2004/02/18 23:22:29 ggregory Exp $
|
||||
* @see UnhandledException
|
||||
*/
|
||||
public class UnhandledExceptionTest extends TestCase {
|
||||
|
|
|
@ -22,14 +22,13 @@ import junit.framework.Test;
|
|||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
import junit.textui.TestRunner;
|
||||
|
||||
import org.apache.commons.lang.SystemUtils;
|
||||
|
||||
/**
|
||||
* Unit tests {@link org.apache.commons.lang.builder.MultiLineToStringStyleTest}.
|
||||
*
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: MultiLineToStringStyleTest.java,v 1.7 2004/02/18 23:00:51 ggregory Exp $
|
||||
* @version $Id: MultiLineToStringStyleTest.java,v 1.8 2004/02/18 23:22:30 ggregory Exp $
|
||||
*/
|
||||
public class MultiLineToStringStyleTest extends TestCase {
|
||||
|
||||
|
|
|
@ -22,14 +22,13 @@ import java.util.Map;
|
|||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
import org.apache.commons.lang.SerializationUtils;
|
||||
|
||||
/**
|
||||
* Test cases for the {@link Enum} class.
|
||||
*
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: ValuedEnumTest.java,v 1.6 2004/02/18 23:01:51 ggregory Exp $
|
||||
* @version $Id: ValuedEnumTest.java,v 1.7 2004/02/18 23:22:29 ggregory Exp $
|
||||
*/
|
||||
|
||||
public final class ValuedEnumTest extends TestCase {
|
||||
|
|
|
@ -22,10 +22,9 @@ import java.io.StringWriter;
|
|||
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}.
|
||||
|
|
|
@ -17,6 +17,7 @@ package org.apache.commons.lang.exception;
|
|||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.PrintStream;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
import junit.textui.TestRunner;
|
||||
|
@ -25,7 +26,7 @@ import junit.textui.TestRunner;
|
|||
* Tests the org.apache.commons.lang.exception.NestableRuntimeException class.
|
||||
*
|
||||
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
|
||||
* @version $Id: NestableRuntimeExceptionTestCase.java,v 1.10 2004/02/18 23:02:15 ggregory Exp $
|
||||
* @version $Id: NestableRuntimeExceptionTestCase.java,v 1.11 2004/02/18 23:22:29 ggregory Exp $
|
||||
*/
|
||||
public class NestableRuntimeExceptionTestCase extends AbstractNestableTestCase {
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@ import junit.framework.Test;
|
|||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
import junit.textui.TestRunner;
|
||||
|
||||
import org.apache.commons.lang.SystemUtils;
|
||||
|
||||
/**
|
||||
|
@ -37,7 +36,7 @@ import org.apache.commons.lang.SystemUtils;
|
|||
* @author Stephen Colebourne
|
||||
* @author Matthew Hawthorne
|
||||
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
||||
* @version $Id: NumberUtilsTest.java,v 1.11 2004/02/18 23:02:38 ggregory Exp $
|
||||
* @version $Id: NumberUtilsTest.java,v 1.12 2004/02/18 23:22:30 ggregory Exp $
|
||||
*/
|
||||
public class NumberUtilsTest extends TestCase {
|
||||
|
||||
|
|
Loading…
Reference in New Issue