summaryrefslogtreecommitdiffstats
path: root/src/testlib
diff options
context:
space:
mode:
authorChristian Strømme <christian.stromme@digia.com>2012-11-29 14:07:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-30 00:50:12 +0100
commit1970552e727855fd45b7b2fe3b56c14cdbf6eb58 (patch)
treef30406612692ae3febe362b4b9730c877b1bba7c /src/testlib
parentd835ebf39cb7fbd303f818b12ea0cd8fa93be3b1 (diff)
Fix missing code snippet in QTest doc.
Change-Id: I6fb1167634b0acddfa61b92d104d98ba8a1a15cb Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
Diffstat (limited to 'src/testlib')
-rw-r--r--src/testlib/doc/snippets/code/src_qtestlib_qtestcase.cpp14
-rw-r--r--src/testlib/qtestcase.cpp2
2 files changed, 15 insertions, 1 deletions
diff --git a/src/testlib/doc/snippets/code/src_qtestlib_qtestcase.cpp b/src/testlib/doc/snippets/code/src_qtestlib_qtestcase.cpp
index 5c22b7c235..b2816d6576 100644
--- a/src/testlib/doc/snippets/code/src_qtestlib_qtestcase.cpp
+++ b/src/testlib/doc/snippets/code/src_qtestlib_qtestcase.cpp
@@ -246,5 +246,19 @@ void tst_MyXmlParser::parse()
}
//! [26]
+//! [27]
+void TestBenchmark::simple()
+{
+ QString str1 = QLatin1String("This is a test string");
+ QString str2 = QLatin1String("This is a test string");
+
+ QCOMPARE(str1.localeAwareCompare(str2), 0);
+
+ QBENCHMARK {
+ str1.localeAwareCompare(str2);
+ }
+}
+//! [27]
+
}
diff --git a/src/testlib/qtestcase.cpp b/src/testlib/qtestcase.cpp
index 6f8b12bded..d4266c0f9d 100644
--- a/src/testlib/qtestcase.cpp
+++ b/src/testlib/qtestcase.cpp
@@ -483,7 +483,7 @@ QT_BEGIN_NAMESPACE
For example:
- \snippet qtestlib/tutorial5/benchmarking.cpp 0
+ \snippet code/src_qtestlib_qtestcase.cpp 27
\sa {Qt Test Overview#Creating a Benchmark}{Creating a Benchmark},
{Chapter 5: Writing a Benchmark}{Writing a Benchmark}