Gather issue related tests at the bottom
This commit is contained in:
parent
bdb074610c
commit
64d820bffa
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue