summaryrefslogtreecommitdiffstats
path: root/tests/auto/qgeoroutingmanagerplugins/qgeoroutingmanagerengine_test.h
diff options
context:
space:
mode:
authorDavid Laing <david.laing@nokia.com>2010-11-30 13:31:22 +1000
committerDavid Laing <david.laing@nokia.com>2010-11-30 13:33:27 +1000
commit9ca3d26709e43d0ebbe26a6906104c9b358fedef (patch)
treef55ad6143dc687899b1479d9b2e3452f318fc0d3 /tests/auto/qgeoroutingmanagerplugins/qgeoroutingmanagerengine_test.h
parentc5d72804399d55f502b4ee2ef5351d963645d908 (diff)
Integrated map object tests.
The map object tests should now be able to be run by the CI system.
Diffstat (limited to 'tests/auto/qgeoroutingmanagerplugins/qgeoroutingmanagerengine_test.h')
-rw-r--r--tests/auto/qgeoroutingmanagerplugins/qgeoroutingmanagerengine_test.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/tests/auto/qgeoroutingmanagerplugins/qgeoroutingmanagerengine_test.h b/tests/auto/qgeoroutingmanagerplugins/qgeoroutingmanagerengine_test.h
new file mode 100644
index 0000000000..87a34c4585
--- /dev/null
+++ b/tests/auto/qgeoroutingmanagerplugins/qgeoroutingmanagerengine_test.h
@@ -0,0 +1,89 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QGEOROUTINGMANAGERENGINE_TEST_H
+#define QGEOROUTINGMANAGERENGINE_TEST_H
+
+#include <qgeoserviceprovider.h>
+#include <qgeoroutingmanagerengine.h>
+#include <qgeocoordinate.h>
+#include <qgeoroutereply.h>
+#include <qgeorouterequest.h>
+
+QTM_USE_NAMESPACE
+
+class QGeoRoutingManagerEngineTest: public QGeoRoutingManagerEngine
+
+{
+Q_OBJECT
+public:
+ QGeoRoutingManagerEngineTest(const QMap<QString, QVariant> &parameters,
+ QGeoServiceProvider::Error *error, QString *errorString) :
+ QGeoRoutingManagerEngine(parameters)
+ {
+ Q_UNUSED(error)
+ Q_UNUSED(errorString)
+ setSupportsRouteUpdates(true);
+ setSupportsAlternativeRoutes(true);
+ setSupportsExcludeAreas(true);
+ setSupportedTravelModes(QGeoRouteRequest::PedestrianTravel);
+ setSupportedFeatureTypes(QGeoRouteRequest::TollFeature);
+ setSupportedFeatureWeights(QGeoRouteRequest::PreferFeatureWeight);
+ setSupportedRouteOptimizations(QGeoRouteRequest::FastestRoute);
+ setSupportedSegmentDetails(QGeoRouteRequest::BasicSegmentData);
+ setSupportedManeuverDetails(QGeoRouteRequest::BasicManeuvers);
+ }
+
+ QGeoRouteReply* calculateRoute(const QGeoRouteRequest& request)
+ {
+ return new QGeoRouteReply(QGeoRouteReply::NoError,"no error");
+ }
+
+ QGeoRouteReply* updateRoute(const QGeoRoute &route, const QGeoCoordinate &position)
+ {
+ return new QGeoRouteReply(QGeoRouteReply::CommunicationError,"no error");
+
+ }
+
+
+};
+
+#endif