aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testgpscoords.h
blob: 7815b7d31d33ac2c728d46c7e1beb348c28bf56f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#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();
	void testXmlFormatParse();
	void testNoUnitParse();
	void testNegativeXmlFormatParse();
	void testPrefixNoUnitParse();
	void testOurWeb();
	void testGoogle();

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