subsurface/tests/testparse.h
Miika Turkia 1e8ea9061e Test case: compare DLD log with a saved one
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-09-13 15:28:04 -07:00

24 lines
506 B
C++

#ifndef TESTPARSE_H
#define TESTPARSE_H
#include <QtTest>
class TestParse : public QObject{
Q_OBJECT
private slots:
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