RetroShare/tests/unittests/libretroshare/services/gxs/GxsPairServiceTester.h
drbob b184bc1809 Add Gxs Circle test.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7307 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2014-04-27 13:26:14 +00:00

33 lines
757 B
C++

#pragma once
// from librssimulator
#include "testing/SetServiceTester.h"
#include "gxstestservice.h"
class GxsPeerNode;
class GxsPairServiceTester: public SetServiceTester
{
public:
GxsPairServiceTester(const RsPeerId &peerId1, const RsPeerId &peerId2, int testMode, bool useIdentityService);
~GxsPairServiceTester();
// Make 4 peer version.
GxsPairServiceTester(
const RsPeerId &peerId1,
const RsPeerId &peerId2,
const RsPeerId &peerId3,
const RsPeerId &peerId4,
int testMode,
bool useIdentityService);
GxsPeerNode *getGxsPeerNode(const RsPeerId &id);
void PrintCapturedPackets();
};