refs #448 metar decoder and unit tests

This commit is contained in:
Roland Winklmeier
2015-06-29 11:33:29 +00:00
committed by Mathew Sutcliffe
parent a94ea5618f
commit d9ab612154
5 changed files with 1034 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
#include "testhardware.h"
#include "testvaluecache.h"
#include "testblackmiscmain.h"
#include "testweather.h"
namespace BlackMiscTest
{
@@ -34,6 +35,7 @@ namespace BlackMiscTest
CTestHardware hardwareTests;
CTestIdentifier identifierTests;
CTestValueCache valueCacheTests;
CTestWeather weatherTests;
status |= QTest::qExec(&pqBaseTests, argc, argv);
status |= QTest::qExec(&avBaseTests, argc, argv);
status |= QTest::qExec(&geoTests, argc, argv);
@@ -42,6 +44,7 @@ namespace BlackMiscTest
status |= QTest::qExec(&variantAndMap, argc, argv);
status |= QTest::qExec(&hardwareTests, argc, argv);
status |= QTest::qExec(&valueCacheTests, argc, argv);
status |= QTest::qExec(&weatherTests, argc, argv);
}
return status;
}