public void testDefaultUnchecked() throws Exception
{
WSSecurityConfiguration wsConfig = load("jboss-wsse-default-unchecked.xml");
Config config = wsConfig.getDefaultConfig();
Authorize authorize = config.getAuthorize();
assertTrue("Unchecked", authorize.isUnchecked());
List<Role> roles = authorize.getRoles();
assertEquals("Expected 0 roles", 0, roles.size());
}