summaryrefslogtreecommitdiff
path: root/tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/tst_qnmeapositioninfosource_simulation_generic.cpp
diff options
context:
space:
mode:
authoralex <alex.blasche@nokia.com>2011-11-02 18:42:18 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-04 06:34:52 +0100
commit3f9da0137a022f3e1c6e3282387a75194f701c78 (patch)
tree97e762185c47edb39a614149d32b34b0616ce310 /tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/tst_qnmeapositioninfosource_simulation_generic.cpp
parentaa0cdea5b994f28d4b1e3c41fbb1cf824ae16777 (diff)
downloadqtlocation-3f9da0137a022f3e1c6e3282387a75194f701c78.tar.gz
Add unit tests for QNmeaPositionInfoSource.
Change-Id: I8fa6cc3c6f0f8f2f5d3de6772a07d8d78bb77f3d Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/tst_qnmeapositioninfosource_simulation_generic.cpp')
-rw-r--r--tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/tst_qnmeapositioninfosource_simulation_generic.cpp61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/tst_qnmeapositioninfosource_simulation_generic.cpp b/tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/tst_qnmeapositioninfosource_simulation_generic.cpp
new file mode 100644
index 00000000..caccd3d6
--- /dev/null
+++ b/tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/tst_qnmeapositioninfosource_simulation_generic.cpp
@@ -0,0 +1,61 @@
+/****************************************************************************
+**
+** 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$
+**
+****************************************************************************/
+
+//TESTED_COMPONENT=src/location
+
+#include "tst_qnmeapositioninfosource.h"
+
+class tst_QNmeaPositionInfoSource_Simulation_Generic : public TestQGeoPositionInfoSource
+{
+ Q_OBJECT
+
+protected:
+ QGeoPositionInfoSource *createTestSource()
+ {
+ QNmeaPositionInfoSource *source = new QNmeaPositionInfoSource(QNmeaPositionInfoSource::SimulationMode);
+ source->setDevice(new UnlimitedNmeaStream(source));
+ return source;
+ }
+};
+
+#include "tst_qnmeapositioninfosource_simulation_generic.moc"
+
+QTEST_GUILESS_MAIN(tst_QNmeaPositionInfoSource_Simulation_Generic);