DOMOutputBuffer buffer = new DOMOutputBuffer();
buffer.initialise();
context.setCurrentOutputBuffer(buffer);
MCSAttributes attributes = new AltTextAttributes(
new ParagraphAttributes());
String altText = "some alt text";
protocol.renderAltText(altText, attributes);
checkRenderAltText(altText, buffer);
}