}
public void testForStyle_mediumLongDateTime() throws Exception {
DateTimeFormatter f = DateTimeFormat.forStyle("ML");
DateTime dt = new DateTime(2004, 6, 9, 10, 20, 30, 0);
String expect = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.LONG, UK).format(dt.toDate());
assertEquals(expect, f.print(dt));
expect = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.LONG, US).format(dt.toDate());
assertEquals(expect, f.withLocale(US).print(dt));
expect = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.LONG, FRANCE).format(dt.toDate());
assertEquals(expect, f.withLocale(FRANCE).print(dt));