mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
5eef86d9fd
- re-enabled gxs test code git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7374 b45a01b8-16f6-495d-af2f-9b41ad6348cc
40 lines
802 B
C++
40 lines
802 B
C++
/*
|
|
* nxsgrptestscenario.h
|
|
*
|
|
* Created on: 23 Apr 2014
|
|
* Author: crispy
|
|
*/
|
|
|
|
#ifndef NXSGRPTESTSCENARIO_H_
|
|
#define NXSGRPTESTSCENARIO_H_
|
|
|
|
#include "nxstestscenario.h"
|
|
|
|
namespace rs_nxs_test {
|
|
|
|
class NxsGrpTestScenario : public NxsTestScenario {
|
|
public:
|
|
|
|
typedef std::map<RsPeerId, RsGxsGroupId::std_vector > ExpectedMap;
|
|
|
|
NxsGrpTestScenario();
|
|
virtual ~NxsGrpTestScenario();
|
|
|
|
virtual bool checkTestPassed();
|
|
virtual bool checkDeepTestPassed();
|
|
void cleanTestScenario();
|
|
|
|
protected:
|
|
|
|
virtual const ExpectedMap& getExpectedMap() = 0;
|
|
RsGeneralDataService* createDataStore(const RsPeerId& peerId, uint16_t servType);
|
|
|
|
private:
|
|
|
|
typedef std::map<RsPeerId, RsGeneralDataService*> DataPeerMap;
|
|
DataPeerMap mDataPeerMap;
|
|
};
|
|
|
|
} /* namespace rs_nxs_test */
|
|
#endif /* NXSGRPTESTSCENARIO_H_ */
|