SEC-2853: Rename WebSocket XML Namespace elements

This commit is contained in:
Rob Winch
2015-02-18 16:38:52 -06:00
parent 706e7fd7a2
commit fea03536d6
10 changed files with 93 additions and 93 deletions

View File

@@ -127,12 +127,12 @@ public class SecurityNamespaceHandlerTests {
@Test
public void messageNotFoundExceptionNoMessageBlock() throws Exception {
public void websocketNotFoundExceptionNoMessageBlock() throws Exception {
String className = FILTER_CHAIN_PROXY_CLASSNAME;
spy(ClassUtils.class);
doThrow(new ClassNotFoundException(className)).when(ClassUtils.class,"forName",eq(Message.class.getName()),any(ClassLoader.class));
new InMemoryXmlApplicationContext(
XML_AUTHENTICATION_MANAGER);
// should load just fine since no message block
// should load just fine since no websocket block
}
}