aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick
diff options
context:
space:
mode:
authorVenu <venugopal.shivashankar@digia.com>2013-10-22 13:47:20 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-23 16:09:11 +0200
commitd61b94bcf8b12cbe397bae849196ce37d6fddf97 (patch)
tree5e02e1d221dc4a7b8c0b7cfc6efcdeb03dac44b9 /src/quick
parent8169b297dacc20181fecac9eaeab4d8b3b805a4a (diff)
Doc: Added a QML module page for Qt Quick Test
This should avoid the TestCase and SignalSpy types being listed in the All Classes page, which is meant for the C++ classes. Task-number: QTBUG-33316 Change-Id: I0f2f9e557df89f46f656a8820602fe5712c64073 Reviewed-by: Caroline Chao <caroline.chao@digia.com> Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick')
-rw-r--r--src/quick/doc/src/qmltypereference.qdoc16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/quick/doc/src/qmltypereference.qdoc b/src/quick/doc/src/qmltypereference.qdoc
index e3b2f4640d..fce7c05e00 100644
--- a/src/quick/doc/src/qmltypereference.qdoc
+++ b/src/quick/doc/src/qmltypereference.qdoc
@@ -36,7 +36,7 @@ interfaces and applications with QML. This page lists every QML type provided
by this module, organized according to category and purpose.
-\section1 Importing \c QtQuick
+\section1 Importing Qt Quick
The types provided by the \l {Qt Quick} module are only available in a QML document
if that document imports the \c QtQuick namespace.
@@ -1058,3 +1058,17 @@ console.log(c + " " + d); // false true
\sa {QML Basic Types}
*/
+
+/*!
+\qmlmodule QtTest 1.0
+\title Qt Quick Test
+\brief This module provides QML types to unit test your QML application
+
+You can import this module using the following statement:
+\code
+import QtTest 1.0
+\endcode
+
+For more information about how to use these types, see
+\l{Qt Quick Test Reference Documentation}.
+*/