mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
acd791b7c1
Note that the actual validation of the result is currently disabled, so the tests will pass even though there are some bugs and rounding errors present. Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
34 lines
576 B
C++
34 lines
576 B
C++
#ifndef TESTPARSE_H
|
|
#define TESTPARSE_H
|
|
|
|
#include <QtTest>
|
|
#include <sqlite3.h>
|
|
|
|
class TestParse : public QObject{
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void init();
|
|
void cleanup();
|
|
|
|
int parseCSV(int, std::string);
|
|
int parseDivingLog();
|
|
int parseV2NoQuestion();
|
|
int parseV3();
|
|
void testParse();
|
|
|
|
void testParseDM4();
|
|
void testParseHUDC();
|
|
void testParseNewFormat();
|
|
void testParseDLD();
|
|
void testParseMerge();
|
|
|
|
int parseCSVmanual(int, std::string);
|
|
void exportCSVDiveDetails();
|
|
void testExport();
|
|
|
|
private:
|
|
sqlite3 *_sqlite3_handle = NULL;
|
|
};
|
|
|
|
#endif
|