SEC-2192: Create DEFAULT_FILTER_NAME

This commit is contained in:
Keesun Baik
2013-07-04 15:40:53 +09:00
committed by Rob Winch
parent cd34c47643
commit cf80cc88b5
3 changed files with 27 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
package org.springframework.security.web.context;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* @author Keesun Baik
*/
public class AbstractSecurityWebApplicationInitializerTest {
@Test
public void defaultFilterName() {
assertEquals(AbstractSecurityWebApplicationInitializer.DEFAULT_FILTER_NAME, "springSecurityFilterChain");
}
}