blob: 8bd0899089819b02a0e7939646b7f2e1b4783aab (
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
|
#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 & 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
|