diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-12-27 16:11:25 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-12-27 16:11:25 +0000 |
commit | b020409247fd240e0c4687cb56ebded831dbd9aa (patch) | |
tree | 29a1ec7af2132430334391a8a304355727c2f8b0 /tests/src | |
parent | e37a6998cf57a9f9df987fbe05db133d08889c39 (diff) | |
download | vaadin-framework-b020409247fd240e0c4687cb56ebded831dbd9aa.tar.gz vaadin-framework-b020409247fd240e0c4687cb56ebded831dbd9aa.zip |
Added FULL format for testing #6207
svn changeset:16665/svn branch:6.5
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/com/vaadin/tests/components/datefield/CustomDateFormats.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/src/com/vaadin/tests/components/datefield/CustomDateFormats.java b/tests/src/com/vaadin/tests/components/datefield/CustomDateFormats.java index 55a2949c11..7f67af1adc 100644 --- a/tests/src/com/vaadin/tests/components/datefield/CustomDateFormats.java +++ b/tests/src/com/vaadin/tests/components/datefield/CustomDateFormats.java @@ -95,6 +95,8 @@ public class CustomDateFormats extends TestBase { addDateField(gridLayout, "d M yyy", locale, "d M yyyy");
addDateField(gridLayout, "d M yyyy", locale);
+ addDateField(gridLayout, getDatePattern(locale, DateFormat.FULL),
+ locale);
addDateField(gridLayout, getDatePattern(locale, DateFormat.LONG),
locale);
addDateField(gridLayout, getDatePattern(locale, DateFormat.MEDIUM),
|