mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
17 lines
268 B
C
17 lines
268 B
C
|
#ifndef TESTPARSE_H
|
||
|
#define TESTPARSE_H
|
||
|
|
||
|
#include <QtTest>
|
||
|
|
||
|
class TestParse : public QObject{
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void testParseCSV();
|
||
|
void testParseV2NoQuestion();
|
||
|
void testParseV2YesQuestion();
|
||
|
void testParseV3();
|
||
|
void testParseCompareOutput();
|
||
|
};
|
||
|
|
||
|
#endif
|