summaryrefslogtreecommitdiff
path: root/libpqpp/mock.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-09-24 03:02:07 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-09-24 03:06:06 +0100
commitf8317be5c2b2f6d31622d863a41646fa456afbbe (patch)
tree6124ba5d953fea59f5b8e6132261003f258e49cf /libpqpp/mock.h
parentConnector compatibility fix (diff)
downloadlibdbpp-postgresql-f8317be5c2b2f6d31622d863a41646fa456afbbe.tar.bz2
libdbpp-postgresql-f8317be5c2b2f6d31622d863a41646fa456afbbe.tar.xz
libdbpp-postgresql-f8317be5c2b2f6d31622d863a41646fa456afbbe.zip
PostgreSQL mocking and tests from Project2
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
+