summaryrefslogblamecommitdiffstats
path: root/tests/testparse.h
blob: 934c48dec0d775d742142cf7d90bb9a2d36eea6f (plain) (tree)
1
2
3
4
5
6
7
8
9


                   
                    


                                 
                            

                       
                                       



                                
                            
                             
                                  
                            
                              
 


                                             
                                        

      
#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