summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/text/qstring
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/text/qstring')
-rw-r--r--tests/auto/corelib/text/qstring/tst_qstring.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/auto/corelib/text/qstring/tst_qstring.cpp b/tests/auto/corelib/text/qstring/tst_qstring.cpp
index e9bdbb41aa..4fcbc0b87e 100644
--- a/tests/auto/corelib/text/qstring/tst_qstring.cpp
+++ b/tests/auto/corelib/text/qstring/tst_qstring.cpp
@@ -447,10 +447,9 @@ private slots:
void operator_pluseq_qchar_data() { operator_pluseq_data(true); }
void operator_pluseq_qbytearray() { operator_pluseq_impl<QByteArray>(); }
void operator_pluseq_qbytearray_data() { operator_pluseq_data(); }
- void operator_pluseq_char() { operator_pluseq_impl<char, QString &(QString::*)(char)>(); }
- void operator_pluseq_char_data() { operator_pluseq_data(true); }
void operator_pluseq_charstar() { operator_pluseq_impl<const char *, QString &(QString::*)(const char *)>(); }
void operator_pluseq_charstar_data() { operator_pluseq_data(); }
+ void operator_pluseq_special_cases();
void operator_pluseq_bytearray_special_cases_data();
void operator_pluseq_bytearray_special_cases();
@@ -2703,6 +2702,17 @@ void tst_QString::append_bytearray_special_cases()
}
}
+void tst_QString::operator_pluseq_special_cases()
+{
+ {
+ QString a;
+ a += QChar::CarriageReturn;
+ a += '\r';
+ a += u'\x1111';
+ QCOMPARE(a, QStringView(u"\r\r\x1111"));
+ }
+}
+
void tst_QString::operator_pluseq_data(bool emptyIsNoop)
{
append_data(emptyIsNoop);