mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
21 lines
398 B
C
21 lines
398 B
C
|
#ifndef GXSTESTSTATS_H
|
||
|
#define GXSTESTSTATS_H
|
||
|
|
||
|
#include "genexchangetester.h"
|
||
|
|
||
|
class GxsTestStats : public GenExchangeTest {
|
||
|
public:
|
||
|
|
||
|
GxsTestStats(GenExchangeTestService* const testService,
|
||
|
RsGeneralDataService* dataService);
|
||
|
virtual ~GxsTestStats();
|
||
|
|
||
|
void runTests();
|
||
|
private:
|
||
|
|
||
|
void testGroupStatistics();
|
||
|
void testServiceStatistics();
|
||
|
};
|
||
|
|
||
|
#endif // GXSTESTSTATS_H
|