summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaroline Chao <caroline.chao@digia.com>2014-01-08 14:38:18 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-09 14:38:54 +0100
commit960f92f8b6e4ee1f5993ebf642d3490aa0a30477 (patch)
tree10dd22e1a0fe06929f5cc984c7fe3f66f0e24a66
parentd68798ea7a94eec17b91e064e36e1d24b16765be (diff)
Qt Quick Test: Fix links
To TestCase and SignalSpy. Add link to the QtTest qml module. Change-Id: Ibbcc90acb2ef81ecaba5d1045b30b373115fb195 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com> Reviewed-by: Martin Smith <martin.smith@digia.com>
-rw-r--r--doc/src/qmlapp/qtquicktest.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/qmlapp/qtquicktest.qdoc b/doc/src/qmlapp/qtquicktest.qdoc
index 62369c152..722297b56 100644
--- a/doc/src/qmlapp/qtquicktest.qdoc
+++ b/doc/src/qmlapp/qtquicktest.qdoc
@@ -32,8 +32,8 @@
\section1 Introduction
- QtQuickTest is a unit test framework for QML applications.
- Test cases are written as JavaScript functions within a TestCase
+ \l {Qt Quick Test QML Types}{Qt Quick Test} is a unit test framework for QML applications.
+ Test cases are written as JavaScript functions within a \l {QtTest::TestCase}{TestCase}
type:
\code
@@ -54,8 +54,8 @@
\endcode
Functions whose names start with \c{test_} are treated as test cases
- to be executed. See the documentation for the \l TestCase and
- \l SignalSpy types for more information on writing test cases.
+ to be executed. See the documentation for the \l {QtTest::TestCase}{TestCase} and
+ \l {QtTest::SignalSpy}{SignalSpy} types for more information on writing test cases.
\section1 Running tests