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

This commit is contained in:
Ben Alex 2005-11-30 00:14:55 +00:00
parent c15f2bbaad
commit dd99fae8e1
1 changed files with 4 additions and 5 deletions

View File

@ -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()