summaryrefslogtreecommitdiffstats
path: root/tests/testparse.h
blob: df0afa9f5af7a14de57551600ab560f7e1970a57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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