Pure Qt/C++ test harness for INetwork

This commit is contained in:
Mathew Sutcliffe
2013-09-01 21:09:22 +01:00
parent 21b74dc912
commit 891d47c8ff
6 changed files with 401 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
#include "testblackcoremain.h"
#include "testinterpolator.h"
#include "testnetwork.h"
#include "testnetmediators.h"
namespace BlackCoreTest
@@ -20,6 +21,10 @@ int CBlackCoreTestMain::unitMain(int argc, char *argv[])
CTestInterpolator interpolatorTests;
status |= QTest::qExec(&interpolatorTests, argc, argv);
}
{
CTestNetwork networkTests;
status |= QTest::qExec(&networkTests, argc, argv);
}
{
CTestNetMediators mediatorTests;
status |= QTest::qExec(&mediatorTests, argc, argv);