summaryrefslogtreecommitdiff
path: root/unittests/mockDefs.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-07-20 10:53:14 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2019-07-20 10:53:14 +0100
commit4c25da8a7ba7437657c3e2da592145113d3532f4 (patch)
tree40f0468135089ff4f9e967bf8ee74b020bee67f7 /unittests/mockDefs.h
downloadnetfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.tar.bz2
netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.tar.xz
netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.zip
Initial commit
Not a lot of stuff, hard coded paths, tests against /usr/portage
Diffstat (limited to 'unittests/mockDefs.h')
-rw-r--r--unittests/mockDefs.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/unittests/mockDefs.h b/unittests/mockDefs.h
new file mode 100644
index 0000000..f6a6c99
--- /dev/null
+++ b/unittests/mockDefs.h
@@ -0,0 +1,31 @@
+#ifndef GITFS_TEST_MOCKDEFS_H
+#define GITFS_TEST_MOCKDEFS_H
+
+#include <visibility.h>
+#include <dryice.h>
+#include <service.h>
+
+namespace GitFS::Test {
+ class DLL_PUBLIC Service : public IceTray::DryIce {
+ public:
+ Service();
+ };
+
+ class DLL_PUBLIC Client : public IceTray::DryIceClient {
+ public:
+ Client();
+
+ const NetFS::ServicePrxPtr s;
+ };
+ class DLL_PUBLIC VolumeClient : public Client {
+ public:
+ VolumeClient();
+ ~VolumeClient();
+
+ const NetFS::ReqEnv env;
+ const NetFS::VolumePrxPtr v;
+ };
+}
+
+#endif
+