refs #875, refs #879, class for test data

(will be consolidated with existing utility classes)
This commit is contained in:
Klaus Basan
2017-02-11 03:13:49 +01:00
committed by Mathew Sutcliffe
parent ae5b0310b6
commit ed820da20d
8 changed files with 157 additions and 29 deletions

View File

@@ -8,11 +8,8 @@
*/
//! \cond PRIVATE_TESTS
/*!
* \file
* \ingroup testblackmisc
*/
//! \file
//! \ingroup testblackmisc
#include "testaviation.h"
#include "testblackmiscmain.h"
@@ -30,7 +27,8 @@
#include "testvaluecache.h"
#include "testvariantandmap.h"
#include "testweather.h"
#include "blackmisc/test.h"
#include "testdbus.h"
#include "blackmisc/test/test.h"
#include <QStringList>
#include <QTest>
@@ -42,7 +40,7 @@ namespace BlackMiscTest
*/
int CBlackMiscTestMain::unitMain(int argc, char *argv[])
{
BlackMisc::CTest test(argc, argv);
BlackMisc::Test::CTest test(argc, argv);
int status = 0;
{
@@ -105,6 +103,10 @@ namespace BlackMiscTest
CTestProcess processTests;
status |= test.exec(&processTests, "blackmisc_process");
}
{
CTestDBus testDBus;
status |= test.exec(&testDBus, "blackmisc_dbus");
}
return status;
}
} // namespace