summaryrefslogtreecommitdiffstats
path: root/src/testlib
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2016-06-02 16:03:02 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2016-06-03 10:40:47 +0000
commitc2d4c3588c8b0f65923c1b3dd98826a99c589495 (patch)
treee31677f339ca9d203f475064bd0ea15e10b6bf7b /src/testlib
parent0a8d3f914c54b057b59942a25d1b76b82e1fa64d (diff)
Doc: Fix examples install path
The example directory name for Qt Test module is qtestlib. Without this change, Qt Creator cannot find the tutorial files and tags them "broken" in the Welcome mode. Change-Id: Ib2de0cd2263aa1651abb697f9f03ecd8eb871ca2 Reviewed-by: Topi Reiniƶ <topi.reinio@theqtcompany.com>
Diffstat (limited to 'src/testlib')
-rw-r--r--src/testlib/doc/qttestlib.qdocconf2
-rw-r--r--src/testlib/doc/src/qttestlib-manual.qdoc5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/testlib/doc/qttestlib.qdocconf b/src/testlib/doc/qttestlib.qdocconf
index 0fafc733b1..899f94ec53 100644
--- a/src/testlib/doc/qttestlib.qdocconf
+++ b/src/testlib/doc/qttestlib.qdocconf
@@ -4,7 +4,7 @@ project = QtTestLib
description = Qt Test Reference Documentation
version = $QT_VERSION
-examplesinstallpath = testlib
+examplesinstallpath = qtestlib
qhp.projects = QtTestLib
diff --git a/src/testlib/doc/src/qttestlib-manual.qdoc b/src/testlib/doc/src/qttestlib-manual.qdoc
index 82651d5cba..781eec0560 100644
--- a/src/testlib/doc/src/qttestlib-manual.qdoc
+++ b/src/testlib/doc/src/qttestlib-manual.qdoc
@@ -484,6 +484,7 @@
\nextpage {Chapter 2: Data Driven Testing}{Chapter 2}
\title Chapter 1: Writing a Unit Test
+ \brief How to write a unit test.
In this first chapter we will see how to write a simple unit test
for a class, and how to execute it.
@@ -559,6 +560,7 @@
\nextpage {Chapter 3: Simulating Gui Events}{Chapter 3}
\title Chapter 2: Data Driven Testing
+ \brief How to create data driven tests.
In this chapter we will demonstrate how to execute a test
multiple times with different test data.
@@ -664,6 +666,7 @@
\nextpage {Chapter 4: Replaying GUI Events}{Chapter 4}
\title Chapter 3: Simulating GUI Events
+ \brief Howe to simulate GUI events.
Qt Test features some mechanisms to test graphical user
interfaces. Instead of simulating native window system events,
@@ -724,6 +727,7 @@
\nextpage {Chapter 5: Writing a Benchmark}{Chapter 5}
\title Chapter 4: Replaying GUI Events
+ \brief How to replay GUI events.
In this chapter, we will show how to simulate a GUI event,
and how to store a series of GUI events as well as replay them on
@@ -803,6 +807,7 @@
\contentspage {Qt Test Tutorial}{Contents}
\title Chapter 5: Writing a Benchmark
+ \brief How to write a benchmark.
In this final chapter we will demonstrate how to write benchmarks
using Qt Test.