CMathUtils::roundToMultipleOf

refs #556
This commit is contained in:
Roland Winklmeier
2016-01-14 00:30:14 +01:00
parent ab2e5af8d6
commit b3d45f58e6
5 changed files with 96 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
#include "testvaluecache.h"
#include "testblackmiscmain.h"
#include "testweather.h"
#include "testmath.h"
namespace BlackMiscTest
{
@@ -36,6 +37,7 @@ namespace BlackMiscTest
CTestIdentifier identifierTests;
CTestValueCache valueCacheTests;
CTestWeather weatherTests;
CTestMath mathTests;
status |= QTest::qExec(&pqBaseTests, argc, argv);
status |= QTest::qExec(&avBaseTests, argc, argv);
status |= QTest::qExec(&geoTests, argc, argv);
@@ -45,6 +47,7 @@ namespace BlackMiscTest
status |= QTest::qExec(&inputTests, argc, argv);
status |= QTest::qExec(&valueCacheTests, argc, argv);
status |= QTest::qExec(&weatherTests, argc, argv);
status |= QTest::qExec(&mathTests, argc, argv);
}
return status;
}