mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
26 lines
529 B
C
26 lines
529 B
C
|
/*
|
||
|
* gxsmsgrelatedtest.h
|
||
|
*
|
||
|
* Created on: 27 Apr 2013
|
||
|
* Author: crispy
|
||
|
*/
|
||
|
|
||
|
#ifndef GXSMSGRELATEDTEST_H_
|
||
|
#define GXSMSGRELATEDTEST_H_
|
||
|
|
||
|
#include "genexchangetester.h"
|
||
|
|
||
|
class GxsMsgRelatedTest: public GenExchangeTest {
|
||
|
public:
|
||
|
GxsMsgRelatedTest();
|
||
|
virtual ~GxsMsgRelatedTest();
|
||
|
|
||
|
// request msg related tests
|
||
|
bool testMsgRelatedChildIdRetrieval();
|
||
|
bool testMsgRelatedChildDataRetrieval();
|
||
|
bool testMsgRelatedChildDataRetrieval_Multi();
|
||
|
bool testMsgAllVersions();
|
||
|
};
|
||
|
|
||
|
#endif /* GXSMSGRELATEDTEST_H_ */
|