diff options
author | abcd <amos.choy@nokia.com> | 2012-01-03 10:43:33 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-01-03 01:44:15 +0100 |
commit | 20fe65472cc9fb209a31968be59890fb806a682d (patch) | |
tree | ddc78b236da1337024a1ef38aabee0423d4443af /tests/auto/qplacesearchsuggestionreply | |
parent | f5e99041facdb3bf2cbd9c8fd09131b2d39dab28 (diff) | |
download | qtlocation-20fe65472cc9fb209a31968be59890fb806a682d.tar.gz |
Unit test for QPlaceSearchSuggestionReply
Change-Id: I0521b9b272dc536f98199de83ecbda0cf2006eba
Reviewed-by: abcd <amos.choy@nokia.com>
Diffstat (limited to 'tests/auto/qplacesearchsuggestionreply')
-rw-r--r-- | tests/auto/qplacesearchsuggestionreply/qplacesearchsuggestionreply.pro | 7 | ||||
-rw-r--r-- | tests/auto/qplacesearchsuggestionreply/tst_qplacesearchsuggestionreply.cpp | 108 |
2 files changed, 115 insertions, 0 deletions
diff --git a/tests/auto/qplacesearchsuggestionreply/qplacesearchsuggestionreply.pro b/tests/auto/qplacesearchsuggestionreply/qplacesearchsuggestionreply.pro new file mode 100644 index 00000000..c4363333 --- /dev/null +++ b/tests/auto/qplacesearchsuggestionreply/qplacesearchsuggestionreply.pro @@ -0,0 +1,7 @@ +TEMPLATE = app +CONFIG += testcase +TARGET = tst_qplacesearchsuggestionreply + +SOURCES += tst_qplacesearchsuggestionreply.cpp + +QT += location testlib diff --git a/tests/auto/qplacesearchsuggestionreply/tst_qplacesearchsuggestionreply.cpp b/tests/auto/qplacesearchsuggestionreply/tst_qplacesearchsuggestionreply.cpp new file mode 100644 index 00000000..2cf3363c --- /dev/null +++ b/tests/auto/qplacesearchsuggestionreply/tst_qplacesearchsuggestionreply.cpp @@ -0,0 +1,108 @@ +/**************************************************************************** +** +** 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/QPlaceSearchSuggestionReply> + +QT_USE_NAMESPACE + +class SuggestionReply : public QPlaceSearchSuggestionReply +{ + Q_OBJECT +public: + SuggestionReply(QObject *parent) : QPlaceSearchSuggestionReply(parent){} + + void setSuggestions(const QStringList &suggestions) { + QPlaceSearchSuggestionReply::setSuggestions(suggestions); + } +}; + +class tst_QPlaceSearchSuggestionReply : public QObject +{ + Q_OBJECT + +public: + tst_QPlaceSearchSuggestionReply(); + +private Q_SLOTS: + void constructorTest(); + void typeTest(); + void suggestionsTest(); +}; + +tst_QPlaceSearchSuggestionReply::tst_QPlaceSearchSuggestionReply() +{ +} + +void tst_QPlaceSearchSuggestionReply::constructorTest() +{ + SuggestionReply *reply = new SuggestionReply(this); + QCOMPARE(reply->parent(), this); + + delete reply; +} + +void tst_QPlaceSearchSuggestionReply::typeTest() +{ + SuggestionReply *reply = new SuggestionReply(this); + QCOMPARE(reply->type(), QPlaceReply::SearchSuggestionReply); + + delete reply; +} + +void tst_QPlaceSearchSuggestionReply::suggestionsTest() +{ + QStringList suggestions; + suggestions << QLatin1String("one") << QLatin1String("two") + << QLatin1String("three"); + + SuggestionReply *reply = new SuggestionReply(this); + reply->setSuggestions(suggestions); + QCOMPARE(reply->suggestions(), suggestions); + + delete reply; +} + +QTEST_APPLESS_MAIN(tst_QPlaceSearchSuggestionReply) + +#include "tst_qplacesearchsuggestionreply.moc" |