RetroShare/tests/unittests/libretroshare/services/gxs/GxsIsolatedServiceTester.h
drbob 181dc9111b Added Gxs Service tests
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7267 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2014-04-12 07:24:17 +00:00

35 lines
699 B
C++

#pragma once
// from librssimulator
#include "testing/IsolatedServiceTester.h"
class RsGxsIdExchange;
class RsGxsCircleExchange;
class GxsTestService;
class RsGeneralDataService;
class RsGxsNetService;
class GxsIsolatedServiceTester: public IsolatedServiceTester
{
public:
GxsIsolatedServiceTester(const RsPeerId &ownId, const RsPeerId &friendId, std::list<RsPeerId> peers, int testMode);
~GxsIsolatedServiceTester();
uint32_t mTestMode;
std::string mGxsDir;
// Id and Circle Interfaces. (NULL for now).
RsGxsIdExchange *mGxsIdService;
RsGxsCircleExchange *mGxsCircles;
GxsTestService *mTestService;
RsGeneralDataService* mTestDs;
RsGxsNetService* mTestNs;
};