SEC-1195: Added internal AuthenticationManager for use by beans which are generated by the <http> block.

This commit is contained in:
Luke Taylor
2009-07-15 23:09:47 +00:00
parent 6346e31517
commit 1afa67c954
14 changed files with 237 additions and 290 deletions

View File

@@ -110,10 +110,9 @@ public class ProviderManagerTests {
}
@Test(expected=IllegalArgumentException.class)
public void testStartupFailsIfProviderListNull() throws Exception {
public void testStartupFailsIfProvidersNotSet() throws Exception {
ProviderManager mgr = new ProviderManager();
mgr.setProviders(null);
mgr.afterPropertiesSet();
}
@Test