summaryrefslogtreecommitdiffstats
path: root/tests/testparse.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testparse.h')
-rw-r--r--tests/testparse.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/testparse.h b/tests/testparse.h
new file mode 100644
index 000000000..df0afa9f5
--- /dev/null
+++ b/tests/testparse.h
@@ -0,0 +1,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