generic type-erased container types CSequence and CCollection, including predicate-based algorithms

refs #81
This commit is contained in:
Mathew Sutcliffe
2013-12-10 16:09:37 +00:00
parent c72e8a4a27
commit a57e640398
15 changed files with 1905 additions and 3 deletions

View File

@@ -3,6 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "testcontainers.h"
#include "testblackmiscmain.h"
namespace BlackMiscTest
@@ -18,10 +19,12 @@ namespace BlackMiscTest
CTestAviation avBaseTests;
CTestVectorMatrix vmTests;
CTestGeo geoTests;
CTestContainers containerTests;
status |= QTest::qExec(&pqBaseTests, argc, argv);
status |= QTest::qExec(&avBaseTests, argc, argv);
status |= QTest::qExec(&vmTests, argc, argv);
status |= QTest::qExec(&geoTests, argc, argv);
status |= QTest::qExec(&containerTests, argc, argv);
}
return status;