subsurface/tests/testparse.h

17 lines
264 B
C
Raw Normal View History

#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