1
0
mirror of synced 2026-08-04 17:27:13 +00:00

SEC-1881: Renamed **/*Test.java to **/*Tests.java since **/*Test.java are not included in surefire configuration

NOTE: Some tests no longer pass and thus are being ignored until SEC-1882 is fixed. This is still better than
the previous situation since before all the tests ending in Test.java were ignored and this ensures that most of
these tests will be ran with the build.
This commit is contained in:
Rob Winch
2011-12-28 17:56:44 -06:00
parent 7cb472f105
commit 9847366d5e
7 changed files with 39 additions and 31 deletions
@@ -19,7 +19,7 @@ import org.springframework.security.core.authority.mapping.MapBasedAttributes2Gr
* @author Ruud Senden
*/
@SuppressWarnings("unchecked")
public class MapBasedAttributes2GrantedAuthoritiesMapperTest {
public class MapBasedAttributes2GrantedAuthoritiesMapperTests {
@Test(expected=IllegalArgumentException.class)
public void testAfterPropertiesSetNoMap() throws Exception {
@@ -34,7 +34,7 @@ import org.junit.Test;
* @author Mike Wiesner
* @since 3.0
*/
public class JndiDnsResolverTest {
public class JndiDnsResolverTests {
private JndiDnsResolver dnsResolver;
private InitialContextFactory contextFactory;