Extract constant

Label output with test case name

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1390172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-09-25 21:46:34 +00:00
parent eedd1169bf
commit 73ea9c43c6
1 changed files with 5 additions and 4 deletions

View File

@ -252,9 +252,10 @@ public class FastDateFormatTest {
@Test
public void testParseSync() throws InterruptedException {
final FastDateFormat formatter= FastDateFormat.getInstance("yyyy-MM-dd'T'HH:mm:ss.SSS Z");
final String pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS Z";
final FastDateFormat formatter= FastDateFormat.getInstance(pattern);
long sdfTime= measureTime(formatter, new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS Z") {
long sdfTime= measureTime(formatter, new SimpleDateFormat(pattern) {
private static final long serialVersionUID = 1L; // because SimpleDateFormat is serializable
@Override
@ -265,9 +266,9 @@ public class FastDateFormatTest {
}
});
long fdfTime= measureTime(formatter, FastDateFormat.getInstance("yyyy-MM-dd'T'HH:mm:ss.SSS Z"));
long fdfTime= measureTime(formatter, FastDateFormat.getInstance(pattern));
String times= "FastDateParser:"+fdfTime+" SimpleDateFormat:"+sdfTime;
String times= "FastDateParserTest: FastDateParser:"+fdfTime+" SimpleDateFormat:"+sdfTime;
System.out.println(times);
}