RetroShare/tests/unittests/libretroshare/gxs/nxs_test/rsgxsnetservice_test.cc
chrisparker126 e916299ceb - reviving nxs tests for gtest framework
- removed double update bug thunder found

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7275 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2014-04-13 21:52:53 +00:00

24 lines
406 B
C++

/*
* rsgxsnetservice_test.cc
*
* Created on: 11 Jul 2012
* Author: crispy
*/
#include <gtest/gtest.h>
#include "nxsgrpsync_test.h"
#include "nxstesthub.h"
TEST(libretroshare_gxs, gxs_grp_sync)
{
NxsGrpSync* gsync_test = new NxsGrpSync();
rs_nxs_test::NxsTestHub tHub(gsync_test);
tHub.StartTest();
rs_nxs_test::NxsTestHub::wait(10);
tHub.EndTest();
ASSERT_TRUE(tHub.testsPassed());
}