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/qdeclarativeeasefollow | |
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/qdeclarativeeasefollow')
-rw-r--r-- | tests/auto/declarative/qdeclarativeeasefollow/tst_qdeclarativeeasefollow.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/declarative/qdeclarativeeasefollow/tst_qdeclarativeeasefollow.cpp b/tests/auto/declarative/qdeclarativeeasefollow/tst_qdeclarativeeasefollow.cpp index 60c74ef..036eec0 100644 --- a/tests/auto/declarative/qdeclarativeeasefollow/tst_qdeclarativeeasefollow.cpp +++ b/tests/auto/declarative/qdeclarativeeasefollow/tst_qdeclarativeeasefollow.cpp @@ -45,11 +45,11 @@ #include <private/qdeclarativevaluetype_p.h> #include "../../../shared/util.h" -class tst_qmleasefollow : public QObject +class tst_qdeclarativeeasefollow : public QObject { Q_OBJECT public: - tst_qmleasefollow(); + tst_qdeclarativeeasefollow(); private slots: void defaultValues(); @@ -60,11 +60,11 @@ private: QDeclarativeEngine engine; }; -tst_qmleasefollow::tst_qmleasefollow() +tst_qdeclarativeeasefollow::tst_qdeclarativeeasefollow() { } -void tst_qmleasefollow::defaultValues() +void tst_qdeclarativeeasefollow::defaultValues() { QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/easefollow1.qml")); @@ -82,7 +82,7 @@ void tst_qmleasefollow::defaultValues() delete obj; } -void tst_qmleasefollow::values() +void tst_qdeclarativeeasefollow::values() { QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/easefollow2.qml")); @@ -100,7 +100,7 @@ void tst_qmleasefollow::values() delete obj; } -void tst_qmleasefollow::disabled() +void tst_qdeclarativeeasefollow::disabled() { QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/easefollow3.qml")); @@ -117,6 +117,6 @@ void tst_qmleasefollow::disabled() delete obj; } -QTEST_MAIN(tst_qmleasefollow) +QTEST_MAIN(tst_qdeclarativeeasefollow) #include "tst_qdeclarativeeasefollow.moc" |