summaryrefslogtreecommitdiff
path: root/unittests/mockDefs.h
blob: 750a256f654dd8865588e167ca1de9b5abbafeeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef GITFS_TEST_MOCKDEFS_H
#define GITFS_TEST_MOCKDEFS_H

#include <dryice.h>
#include <service.h>
#include <visibility.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