summaryrefslogtreecommitdiff
path: root/libsqlitepp/mock.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:13:24 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:13:24 +0000
commit5dd91c7b80443c1f0e747088159c4d8b78d1856d (patch)
tree226331b6026e722f6a69765963ff19a9436155c1 /libsqlitepp/mock.h
parentUse parent glibmm (diff)
downloadlibdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.bz2
libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.xz
libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.zip
SQLite files prefixed with sqlite-
Diffstat (limited to 'libsqlitepp/mock.h')
-rw-r--r--libsqlitepp/mock.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/libsqlitepp/mock.h b/libsqlitepp/mock.h
deleted file mode 100644
index 8bd0899..0000000
--- a/libsqlitepp/mock.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#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
-
-