summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/doc_src_qtestlib.qdoc
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2011-05-03 17:22:25 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2011-05-03 17:22:25 (GMT)
commit07f828276a3d508d533f915ddd46553820a74fb5 (patch)
tree1c729d6ded2ec60e2d6e4566dcd619604ee97b81 /doc/src/snippets/code/doc_src_qtestlib.qdoc
parent65b50fe8ad59c8f68fbe56286c2d5a99687ea545 (diff)
parent399782c7911c11bba80dd37276f8de0b171c52f8 (diff)
downloadQt-07f828276a3d508d533f915ddd46553820a74fb5.zip
Qt-07f828276a3d508d533f915ddd46553820a74fb5.tar.gz
Qt-07f828276a3d508d533f915ddd46553820a74fb5.tar.bz2
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-doc-staging
Conflicts: examples/webkit/webkit.pro
Diffstat (limited to 'doc/src/snippets/code/doc_src_qtestlib.qdoc')
-rw-r--r--doc/src/snippets/code/doc_src_qtestlib.qdoc55
1 files changed, 0 insertions, 55 deletions
diff --git a/doc/src/snippets/code/doc_src_qtestlib.qdoc b/doc/src/snippets/code/doc_src_qtestlib.qdoc
index 80b7d92..92d528e 100644
--- a/doc/src/snippets/code/doc_src_qtestlib.qdoc
+++ b/doc/src/snippets/code/doc_src_qtestlib.qdoc
@@ -38,28 +38,6 @@
**
****************************************************************************/
-//! [0]
-class MyFirstTest: public QObject
-{
- Q_OBJECT
-private slots:
- void initTestCase()
- { qDebug("called before everything else"); }
- void myFirstTest()
- { QVERIFY(1 == 1); }
- void mySecondTest()
- { QVERIFY(1 != 2); }
- void cleanupTestCase()
- { qDebug("called after myFirstTest and mySecondTest"); }
-};
-//! [0]
-
-
-//! [1]
-QT += testlib
-//! [1]
-
-
//! [2]
testname [options] [testfunctions[:testdata]]...
//! [2]
@@ -91,15 +69,6 @@ set LIB=C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SD
//! [7]
-//! [8]
-void TestQString::toUpper()
-{
- QString str = "Hello";
- QVERIFY(str.toUpper() == "HELLO");
-}
-//! [8]
-
-
//! [9]
/myTestDirectory$ qmake -project "CONFIG += qtestlib"
/myTestDirectory$ qmake
@@ -116,27 +85,3 @@ PASS : TestQString::cleanupTestCase()
Totals: 3 passed, 0 failed, 0 skipped
********* Finished testing of TestQString *********
//! [10]
-
-
-//! [11]
-QCOMPARE(QString("hello").toUpper(), QString("HELLO"));
-QCOMPARE(QString("Hello").toUpper(), QString("HELLO"));
-QCOMPARE(QString("HellO").toUpper(), QString("HELLO"));
-QCOMPARE(QString("HELLO").toUpper(), QString("HELLO"));
-//! [11]
-
-//! [12]
-class MyFirstBenchmark: public QObject
-{
- Q_OBJECT
-private slots:
- void myFirstBenchmark()
- {
- QString string1;
- QString string2;
- QBENCHMARK {
- string1.localeAwareCompare(string2);
- }
- }
-};
-//! [12]