aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testparse.h
blob: d99f9e53e46d6ff83d5fc8d8e26a37cc0b90b29b (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
#ifndef TESTPARSE_H
#define TESTPARSE_H

#include <QtTest>

class TestParse : public QObject{
	Q_OBJECT
private slots:
	void initTestCase();
	void testParseCSV();
	void testParseDivingLog();
	void testParseV2NoQuestion();
	void testParseV3();
	void testParseCompareOutput();
	void testParseDM4();
	void testParseCompareDM4Output();
	void testParseHUDC();
	void testParseCompareHUDCOutput();
	void testParseNewFormat();
	void testParseCompareNewFormatOutput();
	void testParseDLD();
	void testParseCompareDLDOutput();
};

#endif