Removed Ordered interface from Http403EntryPoint (unused).

This commit is contained in:
Luke Taylor
2009-09-14 16:06:15 +00:00
parent 897960cd70
commit e7486fc203
2 changed files with 4 additions and 27 deletions

View File

@@ -13,18 +13,7 @@ import junit.framework.TestCase;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
/**
*
* @author TSARDD
* @since 18-okt-2007
*/
public class PreAuthenticatedProcessingFilterEntryPointTests extends TestCase {
public void testGetSetOrder() {
Http403ForbiddenEntryPoint fep = new Http403ForbiddenEntryPoint();
fep.setOrder(333);
assertEquals(fep.getOrder(), 333);
}
public class Http403ForbiddenEntryPointTests extends TestCase {
public void testCommence() {
MockHttpServletRequest req = new MockHttpServletRequest();
@@ -38,6 +27,5 @@ public class PreAuthenticatedProcessingFilterEntryPointTests extends TestCase {
} catch (ServletException e) {
fail("Unexpected exception thrown: "+e);
}
}
}