}
public void testGetWebMethodAnnotation()
throws Exception
{
WebMethodAnnotation webMethod = webAnnotations.getWebMethodAnnotation(echoMethod);
assertNotNull(webMethod);
assertEquals("Invalid operation name", "echoString", webMethod.getOperationName());
assertEquals("Invalid action", "urn:EchoString", webMethod.getAction());
}