Gather issue related tests at the bottom

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

View File

@ -221,15 +221,6 @@ public class FastDateFormatTest {
FastDateFormat.getDateTimeInstance(FastDateFormat.LONG, FastDateFormat.MEDIUM, TimeZone.getDefault(), Locale.getDefault()));
}
/**
* According to LANG-954 (https://issues.apache.org/jira/browse/LANG-954) this is broken in Android 2.1.
*/
@Test
public void testLang954() {
final String pattern = "yyyy-MM-dd'T'";
FastDateFormat.getInstance(pattern);
}
@Test
public void testParseSync() throws InterruptedException {
final String pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS";
@ -309,6 +300,15 @@ public class FastDateFormatTest {
return totalElapsed;
}
/**
* According to LANG-954 (https://issues.apache.org/jira/browse/LANG-954) this is broken in Android 2.1.
*/
@Test
public void testLANG_954() {
final String pattern = "yyyy-MM-dd'T'";
FastDateFormat.getInstance(pattern);
}
@Test
public void testLANG_1152() {
TimeZone utc = TimeZone.getTimeZone("UTC");