final PhoenixAttributeInterceptor interceptor = new PhoenixAttributeInterceptor();
final Attribute attribute = new Attribute( "phoenix:mx-operation" );
final JavaMethod field = new JavaMethod();
final ArrayList tags = new ArrayList();
tags.add(
new DefaultDocletTag( "phoenix:mx-description", description ) );
field.setTags( tags );
final Attribute result =
interceptor.processMethodAttribute( field, attribute );
assertNotNull( "attribute", result );
assertEquals( "attribute.name", "mx.operation", result.getName() );