@Test
 public void testConfiguration() {
   Map<String, Object> properties = new HashMap<String, Object>();
   properties.put(
       "authenticationTypes",
       "/=SAML|BASIC,/search=SAML|BASIC|ANON,/admin=SAML|BASIC,/foo=BASIC,/blah=ANON,/bleh=ANON,/unprotected=,/unprotected2=");
   properties.put(
       "requiredAttributes",
       "/={},/blah=,/search={role=user;control=foo|bar},/admin={role=admin|supervisor}");
   manager.setPolicies(properties);
   testAllPolicies();
 }