LANG-1267: Add test showing that XXX does work when specifing formats

This commit is contained in:
Benedikt Ritter 2016-09-19 10:45:58 +02:00
parent ff2672a578
commit bdb074610c
No known key found for this signature in database
GPG Key ID: 9DAADC1C9FCC82D0
1 changed files with 6 additions and 1 deletions

View File

@ -320,4 +320,9 @@ public void testLANG_1152() {
dateAsString = FastDateFormat.getInstance("dd/MM/yyyy", utc, Locale.US).format(date);
Assert.assertEquals("17/08/292278994", dateAsString);
}
@Test
public void testLANG_1267() throws Exception {
FastDateFormat.getInstance("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
}
}