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/qdeclarativedebugservice | |
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/qdeclarativedebugservice')
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugservice/tst_qdeclarativedebugservice.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/tests/auto/declarative/qdeclarativedebugservice/tst_qdeclarativedebugservice.cpp b/tests/auto/declarative/qdeclarativedebugservice/tst_qdeclarativedebugservice.cpp index 69def9a..c8fc001 100644 --- a/tests/auto/declarative/qdeclarativedebugservice/tst_qdeclarativedebugservice.cpp +++ b/tests/auto/declarative/qdeclarativedebugservice/tst_qdeclarativedebugservice.cpp @@ -54,12 +54,12 @@ #include "../shared/debugutil_p.h" -class tst_QmlDebugService : public QObject +class tst_QDeclarativeDebugService : public QObject { Q_OBJECT public: - tst_QmlDebugService(QDeclarativeDebugTestData *data) + tst_QDeclarativeDebugService(QDeclarativeDebugTestData *data) { m_conn = data->conn; } @@ -76,33 +76,33 @@ private slots: void objectToString(); }; -void tst_QmlDebugService::name() +void tst_QDeclarativeDebugService::name() { - QString name = "tst_QmlDebugService::name()"; + QString name = "tst_QDeclarativeDebugService::name()"; QDeclarativeDebugService service(name); QCOMPARE(service.name(), name); } -void tst_QmlDebugService::isEnabled() +void tst_QDeclarativeDebugService::isEnabled() { - QDeclarativeDebugTestService service("tst_QmlDebugService::isEnabled()", m_conn); + QDeclarativeDebugTestService service("tst_QDeclarativeDebugService::isEnabled()", m_conn); QCOMPARE(service.isEnabled(), false); - QDeclarativeDebugTestClient client("tst_QmlDebugService::isEnabled()", m_conn); + QDeclarativeDebugTestClient client("tst_QDeclarativeDebugService::isEnabled()", m_conn); client.setEnabled(true); QDeclarativeDebugTest::waitForSignal(&service, SIGNAL(enabledStateChanged())); QCOMPARE(service.isEnabled(), true); - QTest::ignoreMessage(QtWarningMsg, "QDeclarativeDebugService: Conflicting plugin name \"tst_QmlDebugService::isEnabled()\" "); - QDeclarativeDebugService duplicate("tst_QmlDebugService::isEnabled()", m_conn); + QTest::ignoreMessage(QtWarningMsg, "QDeclarativeDebugService: Conflicting plugin name \"tst_QDeclarativeDebugService::isEnabled()\" "); + QDeclarativeDebugService duplicate("tst_QDeclarativeDebugService::isEnabled()", m_conn); QCOMPARE(duplicate.isEnabled(), false); } -void tst_QmlDebugService::enabledChanged() +void tst_QDeclarativeDebugService::enabledChanged() { - QDeclarativeDebugTestService service("tst_QmlDebugService::enabledChanged()"); - QDeclarativeDebugTestClient client("tst_QmlDebugService::enabledChanged()", m_conn); + QDeclarativeDebugTestService service("tst_QDeclarativeDebugService::enabledChanged()"); + QDeclarativeDebugTestClient client("tst_QDeclarativeDebugService::enabledChanged()", m_conn); QCOMPARE(service.enabled, false); @@ -111,10 +111,10 @@ void tst_QmlDebugService::enabledChanged() QCOMPARE(service.enabled, true); } -void tst_QmlDebugService::sendMessage() +void tst_QDeclarativeDebugService::sendMessage() { - QDeclarativeDebugTestService service("tst_QmlDebugService::sendMessage()"); - QDeclarativeDebugTestClient client("tst_QmlDebugService::sendMessage()", m_conn); + QDeclarativeDebugTestService service("tst_QDeclarativeDebugService::sendMessage()"); + QDeclarativeDebugTestClient client("tst_QDeclarativeDebugService::sendMessage()", m_conn); QByteArray msg = "hello!"; @@ -123,7 +123,7 @@ void tst_QmlDebugService::sendMessage() QCOMPARE(resp, msg); } -void tst_QmlDebugService::idForObject() +void tst_QDeclarativeDebugService::idForObject() { QCOMPARE(QDeclarativeDebugService::idForObject(0), -1); @@ -145,7 +145,7 @@ void tst_QmlDebugService::idForObject() delete objB; } -void tst_QmlDebugService::objectForId() +void tst_QDeclarativeDebugService::objectForId() { QCOMPARE(QDeclarativeDebugService::objectForId(-1), static_cast<QObject*>(0)); QCOMPARE(QDeclarativeDebugService::objectForId(1), static_cast<QObject*>(0)); @@ -158,7 +158,7 @@ void tst_QmlDebugService::objectForId() QCOMPARE(QDeclarativeDebugService::objectForId(id), static_cast<QObject*>(0)); } -void tst_QmlDebugService::objectToString() +void tst_QDeclarativeDebugService::objectToString() { QCOMPARE(QDeclarativeDebugService::objectToString(0), QString("NULL")); @@ -171,10 +171,10 @@ void tst_QmlDebugService::objectToString() } -class tst_QmlDebugService_Factory : public QDeclarativeTestFactory +class tst_QDeclarativeDebugService_Factory : public QDeclarativeTestFactory { public: - QObject *createTest(QDeclarativeDebugTestData *data) { return new tst_QmlDebugService(data); } + QObject *createTest(QDeclarativeDebugTestData *data) { return new tst_QDeclarativeDebugService(data); } }; // This does not use QTEST_MAIN because the test has to be created and run @@ -183,7 +183,7 @@ int main(int argc, char *argv[]) { QApplication app(argc, argv); - tst_QmlDebugService_Factory factory; + tst_QDeclarativeDebugService_Factory factory; return QDeclarativeDebugTest::runTests(&factory); } |