summaryrefslogtreecommitdiff
path: root/tests/auto/qplacedetailsreply
diff options
context:
space:
mode:
authorabcd <amos.choy@nokia.com>2011-12-12 18:57:58 +1000
committerQt by Nokia <qt-info@nokia.com>2011-12-14 01:40:39 +0100
commit58862b02339570b2ca51347d3e248d768f52f8f0 (patch)
tree0b222a671952b104aa5320dab590104b55d47f8f /tests/auto/qplacedetailsreply
parent7ed8f59882c0a2a505e8d450056a83ad75a9e7de (diff)
downloadqtlocation-58862b02339570b2ca51347d3e248d768f52f8f0.tar.gz
Unit test for QPlaceDetailsReply
Change-Id: Iff12a5fe9962187bdb5e9c8df1caba27d4a01f36 Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'tests/auto/qplacedetailsreply')
-rw-r--r--tests/auto/qplacedetailsreply/qplacedetailsreply.pro7
-rw-r--r--tests/auto/qplacedetailsreply/tst_qplacedetailsreply.cpp102
2 files changed, 109 insertions, 0 deletions
diff --git a/tests/auto/qplacedetailsreply/qplacedetailsreply.pro b/tests/auto/qplacedetailsreply/qplacedetailsreply.pro
new file mode 100644
index 00000000..05daa2fc
--- /dev/null
+++ b/tests/auto/qplacedetailsreply/qplacedetailsreply.pro
@@ -0,0 +1,7 @@
+TEMPLATE = app
+CONFIG += testcase
+TARGET = tst_qplacedetailsreply
+
+SOURCES += tst_qplacedetailsreply.cpp
+
+QT += location testlib
diff --git a/tests/auto/qplacedetailsreply/tst_qplacedetailsreply.cpp b/tests/auto/qplacedetailsreply/tst_qplacedetailsreply.cpp
new file mode 100644
index 00000000..2c193702
--- /dev/null
+++ b/tests/auto/qplacedetailsreply/tst_qplacedetailsreply.cpp
@@ -0,0 +1,102 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtCore/QString>
+#include <QtTest/QtTest>
+
+#include <QtLocation/QPlaceDetailsReply>
+
+QT_USE_NAMESPACE
+
+class TestDetailsReply : public QPlaceDetailsReply
+{
+ Q_OBJECT
+public:
+ TestDetailsReply(QObject *parent) : QPlaceDetailsReply(parent){}
+ ~TestDetailsReply() {}
+ void setPlace(const QPlace &place) { QPlaceDetailsReply::setPlace(place); }
+};
+
+class tst_QPlaceDetailsReply : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_QPlaceDetailsReply();
+
+private Q_SLOTS:
+ void constructorTest();
+ void typeTest();
+ void placeTest();
+};
+
+tst_QPlaceDetailsReply::tst_QPlaceDetailsReply()
+{
+}
+
+void tst_QPlaceDetailsReply::constructorTest()
+{
+ TestDetailsReply *reply = new TestDetailsReply(this);
+ QVERIFY(reply->parent() == this);
+ delete reply;
+}
+
+void tst_QPlaceDetailsReply::typeTest()
+{
+ TestDetailsReply *reply = new TestDetailsReply(this);
+ QCOMPARE(reply->type(), QPlaceReply::DetailsReply);
+ delete reply;
+}
+
+void tst_QPlaceDetailsReply::placeTest()
+{
+ TestDetailsReply *reply = new TestDetailsReply(this);
+ QPlace place;
+ place.setName(QLatin1String("Gotham City"));
+ reply->setPlace(place);
+
+ QCOMPARE(reply->place(), place);
+ delete reply;
+}
+
+QTEST_APPLESS_MAIN(tst_QPlaceDetailsReply)
+
+#include "tst_qplacedetailsreply.moc"