summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmldatetimeformatter
diff options
context:
space:
mode:
authorLeonardo Sobral Cunha <leo.cunha@nokia.com>2010-02-17 19:01:45 (GMT)
committerLeonardo Sobral Cunha <leo.cunha@nokia.com>2010-02-17 19:04:11 (GMT)
commit154915b3a7d37cd4046110e77ae9223bef2523bb (patch)
treee28a750a50f6ede82ab045275cad725bfaf2d386 /tests/auto/declarative/qmldatetimeformatter
parent4460d24950614bd7c60ad7ec14e0418f1b06cc86 (diff)
downloadQt-154915b3a7d37cd4046110e77ae9223bef2523bb.zip
Qt-154915b3a7d37cd4046110e77ae9223bef2523bb.tar.gz
Qt-154915b3a7d37cd4046110e77ae9223bef2523bb.tar.bz2
Renamed declarative autotests class names to match the targets
The default target name for the autotests is the dir name and the class name didnt change when we renamed the dir names.
Diffstat (limited to 'tests/auto/declarative/qmldatetimeformatter')
-rw-r--r--tests/auto/declarative/qmldatetimeformatter/tst_qmldatetimeformatter.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/declarative/qmldatetimeformatter/tst_qmldatetimeformatter.cpp b/tests/auto/declarative/qmldatetimeformatter/tst_qmldatetimeformatter.cpp
index 2ce6186..b21a4f0 100644
--- a/tests/auto/declarative/qmldatetimeformatter/tst_qmldatetimeformatter.cpp
+++ b/tests/auto/declarative/qmldatetimeformatter/tst_qmldatetimeformatter.cpp
@@ -44,11 +44,11 @@
#include <private/qmldatetimeformatter_p.h>
#include <QDebug>
-class tst_datetimeformatter : public QObject
+class tst_qmldatetimeformatter : public QObject
{
Q_OBJECT
public:
- tst_datetimeformatter() {}
+ tst_qmldatetimeformatter() {}
private slots:
void date();
@@ -56,7 +56,7 @@ private slots:
void dateTime();
};
-void tst_datetimeformatter::date()
+void tst_qmldatetimeformatter::date()
{
QmlEngine engine;
QmlComponent formatterComponent(&engine);
@@ -86,7 +86,7 @@ void tst_datetimeformatter::date()
delete formatter;
}
-void tst_datetimeformatter::time()
+void tst_qmldatetimeformatter::time()
{
QmlEngine engine;
QmlComponent formatterComponent(&engine);
@@ -119,7 +119,7 @@ void tst_datetimeformatter::time()
delete formatter;
}
-void tst_datetimeformatter::dateTime()
+void tst_qmldatetimeformatter::dateTime()
{
QmlEngine engine;
QmlComponent formatterComponent(&engine);
@@ -145,6 +145,6 @@ void tst_datetimeformatter::dateTime()
delete formatter;
}
-QTEST_MAIN(tst_datetimeformatter)
+QTEST_MAIN(tst_qmldatetimeformatter)
#include "tst_qmldatetimeformatter.moc"