summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-mock.h
blob: 66ec8139b031ff9a9b3543e2e5fa90807447014d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef MOCKSQLITEDATASOURCE_H
#define MOCKSQLITEDATASOURCE_H

#include <mockDatabase.h>
#include <boost/filesystem/path.hpp>
#include <visibility.h>

namespace SQLite {

class DLL_PUBLIC Mock : public DB::MockDatabase {
	public:
		Mock(const std::string & root, const std::string & name, const std::vector<boost::filesystem::path> & ss);
		Mock(const std::string & name, const std::vector<boost::filesystem::path> & ss);
		~Mock();

	protected:
		void DropDatabase() const override;
		void CreateNewDatabase() const override;

		DB::Connection * openConnection() const override;

	private:
		const boost::filesystem::path testDbPath;
};

}

#endif