* @throws Exception
*/
public void testBig() throws Exception {
DOMOutputBuffer buffer = new DOMOutputBuffer();
buffer.initialise();
protocol.openBig(buffer, new BigAttributes());
buffer.appendEncoded("Test");
protocol.closeBig(buffer, new BigAttributes());
String expected = "<big>Test</big>";
assertEquals("Protocol string should match", expected,
bufferToString(buffer));
}