subsurface/tests/testgpscoords.h
Patrick Valsecchi bd9a443793 More tolerant when parsing GPS coordinates.
Refactored the parsing logic to make it more solid (no more guessing) and
more flexible (support more formats).
Added a test for checking that.
Fixed a few warnings.

[Dirk Hohndel: some changes to coding style]

Signed-off-by: Patrick Valsecchi <patrick@thus.ch>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-02-04 10:51:27 -08:00

28 lines
684 B
C++

#ifndef TESTGPSCOORDS_H
#define TESTGPSCOORDS_H
#include <QtTest>
class TestGpsCoords : public QObject {
Q_OBJECT
private slots:
void testISO6709DParse();
void testNegativeISO6709DParse();
void testSpaceISO6709DParse();
void testSecondsParse();
void testSpaceSecondsParse();
void testNegativeSecondsParse();
void testMinutesParse();
void testSpaceMinutesParse();
void testMinutesInversedParse();
void testDecimalParse();
void testSpaceDecimalParse();
void testDecimalInversedParse();
private:
static void testParseOK(const QString &txt, double expectedLat,
double expectedLon);
static double coord2double(double deg, double min = 0.0, double sec = 0.0);
};
#endif