mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
21 lines
739 B
C++
21 lines
739 B
C++
|
|
#include "support.h"
|
|
#include "libretroshare/gxs/common/data_support.h"
|
|
#include "serialiser/rsnxsitems.h"
|
|
|
|
|
|
#define NUM_BIN_OBJECTS 5
|
|
#define NUM_SYNC_MSGS 8
|
|
#define NUM_SYNC_GRPS 5
|
|
|
|
TEST(libretroshare_serialiser, RsNxsItem)
|
|
{
|
|
test_RsItem<RsNxsGrp>(RS_SERVICE_TYPE_PLUGIN_SIMPLE_FORUM);
|
|
test_RsItem<RsNxsMsg>(RS_SERVICE_TYPE_PLUGIN_SIMPLE_FORUM);
|
|
test_RsItem<RsNxsSyncGrpItem>(RS_SERVICE_TYPE_PLUGIN_SIMPLE_FORUM);
|
|
test_RsItem<RsNxsSyncMsgItem>(RS_SERVICE_TYPE_PLUGIN_SIMPLE_FORUM);
|
|
test_RsItem<RsNxsSyncGrpItem>(RS_SERVICE_TYPE_PLUGIN_SIMPLE_FORUM);
|
|
test_RsItem<RsNxsSyncMsgItem>(RS_SERVICE_TYPE_PLUGIN_SIMPLE_FORUM);
|
|
test_RsItem<RsNxsTransacItem>(RS_SERVICE_TYPE_PLUGIN_SIMPLE_FORUM);
|
|
}
|