}
public void test_print_french_short() throws Exception {
printContext.setLocale(Locale.FRENCH);
printContext.setDateTime(LocalDate.of(2012, 1, 1));
TextPrinterParser pp = new TextPrinterParser(MONTH_OF_YEAR, TextStyle.SHORT, PROVIDER);
pp.print(printContext, buf);
assertEquals(buf.toString(), "janv.");
}