mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
c19f4869af
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
264 B
C++
16 lines
264 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();
|
|
};
|
|
|
|
#endif
|