summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/tools')
-rw-r--r--tests/auto/corelib/tools/qstring/tst_qstring.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/corelib/tools/qstring/tst_qstring.cpp b/tests/auto/corelib/tools/qstring/tst_qstring.cpp
index f3ff6e08e2..781377f574 100644
--- a/tests/auto/corelib/tools/qstring/tst_qstring.cpp
+++ b/tests/auto/corelib/tools/qstring/tst_qstring.cpp
@@ -223,6 +223,7 @@ private slots:
void operatorGreaterWithQLatin1String();
void compareQLatin1Strings();
+ void fromQLatin1StringWithLength();
};
typedef QList<int> IntList;
@@ -5277,6 +5278,14 @@ void tst_QString::compareQLatin1Strings()
QVERIFY(!(subab >= subabc));
}
+void tst_QString::fromQLatin1StringWithLength()
+{
+ QLatin1String latin1foo("foobar", 3);
+ QString foo(latin1foo);
+ QCOMPARE(foo.size(), latin1foo.size());
+ QCOMPARE(foo, QString::fromLatin1("foo"));
+}
+
QTEST_APPLESS_MAIN(tst_QString)
#include "tst_qstring.moc"