2015-03-10 21:27:14 +00:00
|
|
|
#ifndef TESTPARSE_H
|
|
|
|
#define TESTPARSE_H
|
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
|
|
|
class TestParse : public QObject{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
2016-12-27 12:31:30 +00:00
|
|
|
void initTestCase();
|
2015-03-10 21:27:14 +00:00
|
|
|
void testParseCSV();
|
2015-07-24 16:53:22 +00:00
|
|
|
void testParseDivingLog();
|
2015-03-10 21:27:14 +00:00
|
|
|
void testParseV2NoQuestion();
|
|
|
|
void testParseV3();
|
|
|
|
void testParseCompareOutput();
|
2015-07-26 12:08:11 +00:00
|
|
|
void testParseDM4();
|
|
|
|
void testParseCompareDM4Output();
|
2015-07-27 13:13:33 +00:00
|
|
|
void testParseHUDC();
|
|
|
|
void testParseCompareHUDCOutput();
|
2015-07-28 04:36:30 +00:00
|
|
|
void testParseNewFormat();
|
|
|
|
void testParseCompareNewFormatOutput();
|
2015-09-13 18:30:25 +00:00
|
|
|
void testParseDLD();
|
2015-09-13 18:30:27 +00:00
|
|
|
void testParseCompareDLDOutput();
|
2017-02-10 06:16:08 +00:00
|
|
|
void testParseMerge();
|
2015-03-10 21:27:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|