summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEl Mehdi Fekari <mfekari@rim.com>2013-02-11 12:04:48 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-12 22:47:14 +0100
commit640374d052eb3f49090ce0a7553dd90a4783950a (patch)
tree7406d7ea85f68c95450f09ebb5f9f50ffa0fbd3d
parent82eaff97d1e7227e7a566b8576ca76f9dd447c92 (diff)
QLocale: add autotests for Japanese and Czech locales
Change-Id: Id4351ab49bfbdf91b65ccb5153c5d01f53acdf72 Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
-rw-r--r--tests/auto/corelib/tools/qlocale/tst_qlocale.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp b/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
index 8cdad67966..f28ddec199 100644
--- a/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
+++ b/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
@@ -1673,6 +1673,9 @@ void tst_QLocale::dateFormat()
const QLocale ca("en_CA");
QCOMPARE(ca.dateFormat(QLocale::ShortFormat), QLatin1String("M/d/yy"));
QCOMPARE(ca.dateFormat(QLocale::LongFormat), QLatin1String("dddd, MMMM d, yyyy"));
+
+ const QLocale ja("ja_JP");
+ QCOMPARE(ja.dateFormat(QLocale::ShortFormat), QLatin1String("yyyy/MM/dd"));
}
void tst_QLocale::timeFormat()
@@ -1739,6 +1742,10 @@ void tst_QLocale::monthName()
QLocale ir("ga_IE");
QCOMPARE(ir.monthName(1, QLocale::ShortFormat), QLatin1String("Ean"));
QCOMPARE(ir.monthName(12, QLocale::ShortFormat), QLatin1String("Noll"));
+
+ QLocale cz("cs_CZ");
+ QCOMPARE(cz.monthName(1, QLocale::ShortFormat), QLatin1String("led"));
+ QCOMPARE(cz.monthName(12, QLocale::ShortFormat), QLatin1String("pro"));
}
void tst_QLocale::standaloneMonthName()