summaryrefslogtreecommitdiff
path: root/unittests/mockDefs.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-08-22 15:26:11 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2020-08-22 15:26:11 +0100
commitf759884235b4594c4f960ea0c587697eef717665 (patch)
tree92f3b95e99fac6688a6d9cec88b6553cb77f0c60 /unittests/mockDefs.h
parentUpdate to new NetFS interface (diff)
downloadnetfs-gitfs-f759884235b4594c4f960ea0c587697eef717665.tar.bz2
netfs-gitfs-f759884235b4594c4f960ea0c587697eef717665.tar.xz
netfs-gitfs-f759884235b4594c4f960ea0c587697eef717665.zip
Clang-format
Diffstat (limited to 'unittests/mockDefs.h')
-rw-r--r--unittests/mockDefs.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/unittests/mockDefs.h b/unittests/mockDefs.h
index f6a6c99..750a256 100644
--- a/unittests/mockDefs.h
+++ b/unittests/mockDefs.h
@@ -1,31 +1,30 @@
#ifndef GITFS_TEST_MOCKDEFS_H
#define GITFS_TEST_MOCKDEFS_H
-#include <visibility.h>
#include <dryice.h>
#include <service.h>
+#include <visibility.h>
namespace GitFS::Test {
class DLL_PUBLIC Service : public IceTray::DryIce {
- public:
- Service();
+ public:
+ Service();
};
class DLL_PUBLIC Client : public IceTray::DryIceClient {
- public:
- Client();
+ public:
+ Client();
- const NetFS::ServicePrxPtr s;
+ const NetFS::ServicePrxPtr s;
};
class DLL_PUBLIC VolumeClient : public Client {
- public:
- VolumeClient();
- ~VolumeClient();
+ public:
+ VolumeClient();
+ ~VolumeClient();
- const NetFS::ReqEnv env;
- const NetFS::VolumePrxPtr v;
+ const NetFS::ReqEnv env;
+ const NetFS::VolumePrxPtr v;
};
}
#endif
-