aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/particles/qquickage
diff options
context:
space:
mode:
authorKurt Korbatits <kurt.korbatits@nokia.com>2012-03-07 08:02:44 +1000
committerQt by Nokia <qt-info@nokia.com>2012-03-07 06:24:33 +0100
commit83b4f5cc4f2661a41bbed4e17606a5e40bd06b7c (patch)
treeaa7bebfcc81a53ee999123f6c4aa05e75aceaca3 /tests/auto/particles/qquickage
parent72f4ccecf457eaa34469e9d7c2d05802214904d6 (diff)
Changed particles tests to work from install directory
- Changed particles tests to use TESTDATA - Changed particles tests to inherit from QQmlDataTest and use testFileUrl() to find test data Change-Id: Iae7c5111d976ec3efe473c40a3bab2f0a38c0969 Reviewed-by: Michael Brasser <michael.brasser@nokia.com> Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
Diffstat (limited to 'tests/auto/particles/qquickage')
-rw-r--r--tests/auto/particles/qquickage/qquickage.pro5
-rw-r--r--tests/auto/particles/qquickage/tst_qquickage.cpp19
2 files changed, 14 insertions, 10 deletions
diff --git a/tests/auto/particles/qquickage/qquickage.pro b/tests/auto/particles/qquickage/qquickage.pro
index 6616ec45ee..99c768fdb1 100644
--- a/tests/auto/particles/qquickage/qquickage.pro
+++ b/tests/auto/particles/qquickage/qquickage.pro
@@ -3,9 +3,8 @@ TARGET = tst_qquickage
SOURCES += tst_qquickage.cpp
macx:CONFIG -= app_bundle
-testDataFiles.files = data
-testDataFiles.path = .
-DEPLOYMENT += testDataFiles
+include (../../shared/util.pri)
+TESTDATA = data/*
QT += core-private gui-private v8-private qml-private quick-private opengl-private testlib
diff --git a/tests/auto/particles/qquickage/tst_qquickage.cpp b/tests/auto/particles/qquickage/tst_qquickage.cpp
index 78b8ae501d..d3562c2874 100644
--- a/tests/auto/particles/qquickage/tst_qquickage.cpp
+++ b/tests/auto/particles/qquickage/tst_qquickage.cpp
@@ -44,27 +44,32 @@
#include <private/qquickparticlesystem_p.h>
#include <private/qabstractanimation_p.h>
-class tst_qquickage : public QObject
+#include "../../shared/util.h"
+
+class tst_qquickage : public QQmlDataTest
{
Q_OBJECT
public:
- tst_qquickage();
+ tst_qquickage() {}
private slots:
+ void initTestCase();
+
void test_kill();
void test_jump();
void test_onceOff();
void test_sustained();
};
-tst_qquickage::tst_qquickage()
+void tst_qquickage::initTestCase()
{
+ QQmlDataTest::initTestCase();
QUnifiedTimer::instance()->setConsistentTiming(true);
}
void tst_qquickage::test_kill()
{
- QQuickView* view = createView(QCoreApplication::applicationDirPath() + "/data/kill.qml", 600);
+ QQuickView* view = createView(testFileUrl("kill.qml"), 600);
QQuickParticleSystem* system = view->rootObject()->findChild<QQuickParticleSystem*>("system");
ensureAnimTime(600, system->m_animation);
@@ -89,7 +94,7 @@ void tst_qquickage::test_kill()
void tst_qquickage::test_jump()
{
- QQuickView* view = createView(QCoreApplication::applicationDirPath() + "/data/jump.qml", 600);
+ QQuickView* view = createView(testFileUrl("jump.qml"), 600);
QQuickParticleSystem* system = view->rootObject()->findChild<QQuickParticleSystem*>("system");
ensureAnimTime(600, system->m_animation);
@@ -115,7 +120,7 @@ void tst_qquickage::test_jump()
void tst_qquickage::test_onceOff()
{
- QQuickView* view = createView(QCoreApplication::applicationDirPath() + "/data/onceoff.qml", 600);
+ QQuickView* view = createView(testFileUrl("onceoff.qml"), 600);
QQuickParticleSystem* system = view->rootObject()->findChild<QQuickParticleSystem*>("system");
ensureAnimTime(600, system->m_animation);
@@ -140,7 +145,7 @@ void tst_qquickage::test_onceOff()
void tst_qquickage::test_sustained()
{
- QQuickView* view = createView(QCoreApplication::applicationDirPath() + "/data/sustained.qml", 600);
+ QQuickView* view = createView(testFileUrl("sustained.qml"), 600);
QQuickParticleSystem* system = view->rootObject()->findChild<QQuickParticleSystem*>("system");
ensureAnimTime(600, system->m_animation);
//TODO: Ensure some particles have lived to 0.4s point despite unified timer