pp.print(printEmptyContext, buf);
assertEquals(buf.toString(), "----Z");
}
public void test_print_noPadRequiredMultiple() throws Exception {
PadPrinterParserDecorator pp = new PadPrinterParserDecorator(new StringLiteralPrinterParser("WXYZ"), 4, '-');
pp.print(printEmptyContext, buf);
assertEquals(buf.toString(), "WXYZ");
}