Просмотр исходного кода

Fix error reported on acegisecurity-developer by Samuel Le Berrigaud on 28 November 2005.

Ben Alex 20 лет назад
Родитель
Сommit
dd99fae8e1

+ 4 - 5
core-tiger/src/test/java/org/acegisecurity/intercept/method/MethodDefinitionSourceEditorTigerTests.java

@@ -15,6 +15,9 @@
 
 package org.acegisecurity.intercept.method;
 
+import java.lang.reflect.AccessibleObject;
+import java.lang.reflect.Method;
+
 import junit.framework.TestCase;
 
 import org.acegisecurity.ConfigAttributeDefinition;
@@ -25,12 +28,8 @@ import org.acegisecurity.PersonServiceImpl;
 import org.acegisecurity.SecurityConfig;
 import org.acegisecurity.Service;
 import org.acegisecurity.ServiceImpl;
-
 import org.aopalliance.intercept.MethodInvocation;
 
-import java.lang.reflect.AccessibleObject;
-import java.lang.reflect.Method;
-
 
 /**
  * Extra tests to demonstrate generics behaviour with
@@ -57,7 +56,7 @@ public class MethodDefinitionSourceEditorTigerTests extends TestCase {
     }
 
     public static void main(String[] args) {
-        junit.textui.TestRunner.run(MethodDefinitionSourceEditorTests.class);
+        junit.textui.TestRunner.run(MethodDefinitionSourceEditorTigerTests.class);
     }
 
     public void testConcreteClassInvocationsAlsoReturnDefinitionsAgainstInterface()