diff options
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.js (renamed from tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.js) | 0 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.qml (renamed from tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml) | 0 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/qdeclarativedebugjs.pro (renamed from tests/auto/declarative/qdeclarativescriptdebugging/qdeclarativescriptdebugging.pro) | 2 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativedebugjs/tst_qdeclarativedebugjs.cpp (renamed from tests/auto/declarative/qdeclarativescriptdebugging/tst_qdeclarativescriptdebugging.cpp) | 12 |
4 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.js b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.js index 8decbf0..8decbf0 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.js +++ b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.js diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.qml index 9096c32..9096c32 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml +++ b/tests/auto/declarative/qdeclarativedebugjs/data/backtrace1.qml diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/qdeclarativescriptdebugging.pro b/tests/auto/declarative/qdeclarativedebugjs/qdeclarativedebugjs.pro index 171f308..0a33c27 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/qdeclarativescriptdebugging.pro +++ b/tests/auto/declarative/qdeclarativedebugjs/qdeclarativedebugjs.pro @@ -2,7 +2,7 @@ load(qttest_p4) contains(QT_CONFIG,declarative): QT += declarative script macx:CONFIG -= app_bundle -SOURCES += tst_qdeclarativescriptdebugging.cpp +SOURCES += tst_qdeclarativedebugjs.cpp INCLUDEPATH += ../shared # QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/tst_qdeclarativescriptdebugging.cpp b/tests/auto/declarative/qdeclarativedebugjs/tst_qdeclarativedebugjs.cpp index 4301174..92f9c6e 100644 --- a/tests/auto/declarative/qdeclarativescriptdebugging/tst_qdeclarativescriptdebugging.cpp +++ b/tests/auto/declarative/qdeclarativedebugjs/tst_qdeclarativedebugjs.cpp @@ -100,23 +100,23 @@ inline QUrl TEST_FILE(const char *filename) return TEST_FILE(QLatin1String(filename)); } -class tst_qdeclarativescriptdebugging : public QObject +class tst_QDeclarativeDebugJS : public QObject { Q_OBJECT public: - tst_qdeclarativescriptdebugging() {} + tst_QDeclarativeDebugJS() {} private slots: void initTestCase(); void backtrace1(); }; -void tst_qdeclarativescriptdebugging::initTestCase() +void tst_QDeclarativeDebugJS::initTestCase() { qmlRegisterType<MyTestObject>("Qt.test", 1,0, "MyTestObject"); } -void tst_qdeclarativescriptdebugging::backtrace1() +void tst_QDeclarativeDebugJS::backtrace1() { { QDeclarativeEngine engine; @@ -149,6 +149,6 @@ void tst_qdeclarativescriptdebugging::backtrace1() } -QTEST_MAIN(tst_qdeclarativescriptdebugging) +QTEST_MAIN(tst_QDeclarativeDebugJS) -#include "tst_qdeclarativescriptdebugging.moc" +#include "tst_qdeclarativedebugjs.moc" |