aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/src/appdevguide/qtquicktest.qdoc
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2013-04-25 13:32:47 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-26 12:57:03 +0200
commit73721b5c275ca811a869d9c3b92e88edd31abcab (patch)
tree673f66860d93b320a78875d2c7e724379f6a05e6 /src/quick/doc/src/appdevguide/qtquicktest.qdoc
parentd5e612fb3e9753c762b741d135fabd2b1f8ae1a6 (diff)
Doc: corrections (Writing Guidelines) and language edits
Corrected punctuation issues. Task-number: QTBUG-30774 Change-Id: I144d2487d4f7c248c60bf824b909145416d356fa Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/doc/src/appdevguide/qtquicktest.qdoc')
-rw-r--r--src/quick/doc/src/appdevguide/qtquicktest.qdoc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/quick/doc/src/appdevguide/qtquicktest.qdoc b/src/quick/doc/src/appdevguide/qtquicktest.qdoc
index a5712cab8a..62369c1526 100644
--- a/src/quick/doc/src/appdevguide/qtquicktest.qdoc
+++ b/src/quick/doc/src/appdevguide/qtquicktest.qdoc
@@ -54,7 +54,7 @@
\endcode
Functions whose names start with \c{test_} are treated as test cases
- to be executed. See the documentation for the \l TestCase and
+ to be executed. See the documentation for the \l TestCase and
\l SignalSpy types for more information on writing test cases.
\section1 Running tests
@@ -67,8 +67,8 @@
QUICK_TEST_MAIN(example)
\endcode
- Where "example" is an identifier to use to uniquely identify
- this set of tests. You should add \c{CONFIG += qmltestcase}.
+ Where "example" is the identifier to use to uniquely identify
+ this set of tests. You should add \c{CONFIG += qmltestcase}.
for example:
\code
@@ -79,15 +79,15 @@
\endcode
The test harness scans the specified source directory recursively
- for "tst_*.qml" files. If \c{QUICK_TEST_SOURCE_DIR} is not defined,
+ for "tst_*.qml" files. If \c{QUICK_TEST_SOURCE_DIR} is not defined,
then the current directory will be scanned when the harness is run.
Other *.qml files may appear for auxillary QML components that are
used by the test.
The \c{-input} command-line option can be set at runtime to run
- test cases from a different directory. This may be needed to run
+ test cases from a different directory. This may be needed to run
tests on a target device where the compiled-in directory name refers
- to a host. For example:
+ to a host. For example:
\code
tst_example -input /mnt/SDCard/qmltests