#ifndef GITFS_TEST_MOCKDEFS_H #define GITFS_TEST_MOCKDEFS_H #include #include #include 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