mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
37 lines
652 B
C
37 lines
652 B
C
|
/*
|
||
|
* gxspublishgrouptest.h
|
||
|
*
|
||
|
* Created on: 27 Apr 2013
|
||
|
* Author: crispy
|
||
|
*/
|
||
|
|
||
|
#ifndef GXSPUBLISHGROUPTEST_H_
|
||
|
#define GXSPUBLISHGROUPTEST_H_
|
||
|
|
||
|
#include "genexchangetester.h"
|
||
|
|
||
|
class GxsPublishGroupTest : public GenExchangeTest {
|
||
|
public:
|
||
|
|
||
|
GxsPublishGroupTest(GenExchangeTestService* const testService,
|
||
|
RsGeneralDataService* dataService);
|
||
|
virtual ~GxsPublishGroupTest();
|
||
|
|
||
|
void runTests();
|
||
|
|
||
|
private:
|
||
|
|
||
|
// group tests
|
||
|
bool testGrpSubmissionRetrieval();
|
||
|
bool testSpecificGrpRetrieval();
|
||
|
bool testGrpIdRetrieval();
|
||
|
bool testGrpMetaRetrieval();
|
||
|
bool testUpdateGroup();
|
||
|
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* GXSPUBLISHGROUPTEST_H_ */
|