summaryrefslogtreecommitdiffstats
path: root/examples/qtestlib/tutorial2
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2022-07-27 19:02:59 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-09-07 15:53:25 +0000
commitddeb1c9a7f91b2011add97684f36cee513cf7872 (patch)
tree709e5442584dad0cf466ae02f85d3f02aa6f5f0d /examples/qtestlib/tutorial2
parent63788de25bb36ec1de0e7d550e6b2d02c8080995 (diff)
Document shell-friendly data tags as best practice
Also follow this best practice in testlib's own documentation and examples. Change-Id: I8b57dfa8f88835adae8fceeb122a16635708e338 Reviewed-by: Paul Wicking <paul.wicking@qt.io> (cherry picked from commit f94f1653368bf8c499fa9a6eeba81736bb2a7710) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'examples/qtestlib/tutorial2')
-rw-r--r--examples/qtestlib/tutorial2/testqstring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qtestlib/tutorial2/testqstring.cpp b/examples/qtestlib/tutorial2/testqstring.cpp
index 2e87292daa..fa6779a16f 100644
--- a/examples/qtestlib/tutorial2/testqstring.cpp
+++ b/examples/qtestlib/tutorial2/testqstring.cpp
@@ -20,9 +20,9 @@ void TestQString::toUpper_data()
QTest::addColumn<QString>("string");
QTest::addColumn<QString>("result");
- QTest::newRow("all lower") << "hello" << "HELLO";
+ QTest::newRow("all-lower") << "hello" << "HELLO";
QTest::newRow("mixed") << "Hello" << "HELLO";
- QTest::newRow("all upper") << "HELLO" << "HELLO";
+ QTest::newRow("all-upper") << "HELLO" << "HELLO";
}
//! [1]