diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-24 05:06:13 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-24 05:07:27 (GMT) |
commit | b9c5c6b562ffbaeb509cffd300898018357834f3 (patch) | |
tree | 0185bb5c9cf1babb87e4c73bf8de48f3b575bcaf /tests/auto/declarative/qdeclarativestyledtext | |
parent | 42e493f397436607d219edfc76a2e04fbb8c2a18 (diff) | |
download | Qt-b9c5c6b562ffbaeb509cffd300898018357834f3.zip Qt-b9c5c6b562ffbaeb509cffd300898018357834f3.tar.gz Qt-b9c5c6b562ffbaeb509cffd300898018357834f3.tar.bz2 |
Change autotest class prefix from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to QDeclarativeXXX.
Diffstat (limited to 'tests/auto/declarative/qdeclarativestyledtext')
-rw-r--r-- | tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp b/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp index 1968300..7b1293e 100644 --- a/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp +++ b/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp @@ -43,11 +43,11 @@ #include <QtGui/QTextLayout> #include <private/qdeclarativestyledtext_p.h> -class tst_qmlstyledtext : public QObject +class tst_qdeclarativestyledtext : public QObject { Q_OBJECT public: - tst_qmlstyledtext() + tst_qdeclarativestyledtext() { } @@ -58,7 +58,7 @@ private slots: // For malformed input all we test is that we get the expected text out. // -void tst_qmlstyledtext::textOutput_data() +void tst_qdeclarativestyledtext::textOutput_data() { QTest::addColumn<QString>("input"); QTest::addColumn<QString>("output"); @@ -79,7 +79,7 @@ void tst_qmlstyledtext::textOutput_data() QTest::newRow("empty") << "" << ""; } -void tst_qmlstyledtext::textOutput() +void tst_qdeclarativestyledtext::textOutput() { QFETCH(QString, input); QFETCH(QString, output); @@ -91,6 +91,6 @@ void tst_qmlstyledtext::textOutput() } -QTEST_MAIN(tst_qmlstyledtext) +QTEST_MAIN(tst_qdeclarativestyledtext) #include "tst_qdeclarativestyledtext.moc" |