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
commit817e41ccb3102239c24af940f301a5335ddabeac (patch)
treef93d51c06d3d244b5ddfd2c3b13f895a14c67e84 /libpqpp/mock.h
parentConnector compatibility fix (diff)
downloadlibdbpp-postgresql-817e41ccb3102239c24af940f301a5335ddabeac.tar.bz2
libdbpp-postgresql-817e41ccb3102239c24af940f301a5335ddabeac.tar.xz
libdbpp-postgresql-817e41ccb3102239c24af940f301a5335ddabeac.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
+