mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
ec20d36f3c
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
26 lines
552 B
C++
26 lines
552 B
C++
#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();
|
|
void testParseMerge();
|
|
};
|
|
|
|
#endif
|