summaryrefslogtreecommitdiff
path: root/libpqpp/mock.h
diff options
context:
space:
mode:
Diffstat (limited to 'libpqpp/mock.h')
-rw-r--r--libpqpp/mock.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/libpqpp/mock.h b/libpqpp/mock.h
new file mode 100644
index 0000000..e8b7366
--- /dev/null
+++ b/libpqpp/mock.h
@@ -0,0 +1,22 @@
+#ifndef MOCKPQDATASOURCE_H
+#define MOCKPQDATASOURCE_H
+
+#include <mockDatabase.h>
+#include <boost/filesystem/path.hpp>
+#include <visibility.h>
+
+namespace PQ {
+ class DLL_PUBLIC Mock : public DB::MockServerDatabase {
+ public:
+ Mock(const std::string & master, const std::string & name, const std::vector<boost::filesystem::path> & ss);
+ ~Mock();
+
+ DB::Connection * openConnection() const override;
+
+ protected:
+ void DropDatabase() const override;
+ };
+}
+
+#endif
+