subsurface/tests/testparse.h
Miika Turkia 96b612941e Test case: Seabear new format
This validates Seabear import from H3 and T1 dive computers that use new
CSV format to store the logs. The fields wary depending on the dive
mode, thus we need to parse the field configuration during import.

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-07-28 08:47:05 -07:00

22 lines
449 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();
};
#endif