expand star imports

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/proxy/trunk@1580945 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java b/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java
index 71c311a..ef418a6 100644
--- a/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java
+++ b/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java
@@ -17,6 +17,11 @@
 
 package org.apache.commons.proxy2.interceptor;
 
+import static org.apache.commons.proxy2.interceptor.InterceptorUtils.constant;
+import static org.junit.Assert.assertEquals;
+
+import java.lang.reflect.Method;
+
 import org.apache.commons.proxy2.Invocation;
 import org.apache.commons.proxy2.interceptor.matcher.invocation.MethodNameMatcher;
 import org.apache.commons.proxy2.util.AbstractTestCase;
@@ -24,12 +29,6 @@
 import org.apache.commons.proxy2.util.MockInvocation;
 import org.junit.Test;
 
-import static org.junit.Assert.*;
-
-import java.lang.reflect.Method;
-
-import static org.apache.commons.proxy2.interceptor.InterceptorUtils.constant;
-
 public class SwitchInterceptorTest extends AbstractTestCase
 {
 //----------------------------------------------------------------------------------------------------------------------