mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
26 lines
418 B
C++
26 lines
418 B
C++
|
#include "gxsteststats.h"
|
||
|
|
||
|
#define POLLING_TIME_OUT 5
|
||
|
|
||
|
GxsTestStats::GxsTestStats(GenExchangeTestService *const testService, RsGeneralDataService *dataService)
|
||
|
: GenExchangeTest(testService, dataService, POLLING_TIME_OUT){
|
||
|
}
|
||
|
|
||
|
GxsTestStats::~GxsTestStats()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void GxsTestStats::runTests()
|
||
|
{
|
||
|
testGroupStatistics();
|
||
|
}
|
||
|
|
||
|
void GxsTestStats::testGroupStatistics()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void GxsTestStats::testServiceStatistics()
|
||
|
{
|
||
|
}
|