-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTests.h
44 lines (30 loc) · 877 Bytes
/
Tests.h
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
35
36
37
38
39
40
41
42
43
44
#pragma once
#include <QtTest/QTest>
/**
* @brief cUnit-Tests
* @details This class provides unit tests for asGPS.
* @author Andeas Schrell
*/
class Tests : public QObject
{
Q_OBJECT
private slots:
/** Test constructors without parameters. */
void testNew();
/** Test constructors with parameters */
void testLatLng();
/** Test Google formating */
void testGoogleFormat();
/** Test ASP Option formatting */
void testOptionFormat();
/** Test degrees minutes seconds format */
void testDegFormat();
/** Test country code conversion */
void testIso3661();
/** Test config file */
void testConfig();
/** Test config mapper */
void testConfigMapper();
/** Test TrackList */
void testTrackList();
};