summaryrefslogtreecommitdiffstats
path: root/tests/auto/qnmeapositioninfosource/tst_qnmeapositioninfosource_simulation_generic.cpp
diff options
context:
space:
mode:
authorStian Sandvik Thomassen <stian.thomassen@nokia.com>2010-01-21 11:27:37 +1000
committerStian Sandvik Thomassen <stian.thomassen@nokia.com>2010-01-21 11:27:37 +1000
commita213e004bdd93f344320a45a186ecc3eaf593247 (patch)
tree768aa8b89f10800719c6b6037c4e518dbffbc337 /tests/auto/qnmeapositioninfosource/tst_qnmeapositioninfosource_simulation_generic.cpp
parentf482ee42ccb1755076c884b09da5e42c8c39b036 (diff)
Split QNmeaPositionInfoSource test cases into separate executables
Limiting one test case per main() function let's us run individual test functions which is helpful when trying to reproduce failures.
Diffstat (limited to 'tests/auto/qnmeapositioninfosource/tst_qnmeapositioninfosource_simulation_generic.cpp')
-rw-r--r--tests/auto/qnmeapositioninfosource/tst_qnmeapositioninfosource_simulation_generic.cpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/tests/auto/qnmeapositioninfosource/tst_qnmeapositioninfosource_simulation_generic.cpp b/tests/auto/qnmeapositioninfosource/tst_qnmeapositioninfosource_simulation_generic.cpp
new file mode 100644
index 0000000000..0f2565fa38
--- /dev/null
+++ b/tests/auto/qnmeapositioninfosource/tst_qnmeapositioninfosource_simulation_generic.cpp
@@ -0,0 +1,60 @@
+
+/****************************************************************************
+**
+** Copyright (C) 2009 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$
+**
+****************************************************************************/
+
+#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_MAIN(tst_QNmeaPositionInfoSource_Simulation_Generic);