Changed interpolator (preliminary) to work with PQs and new classes, added stubs for unit tests in BlackCore

This commit is contained in:
Klaus Basan
2013-04-27 02:09:42 +02:00
parent 5eac9be7d5
commit c5b9c48cd6
31 changed files with 645 additions and 363 deletions

21
tests/blackcore/main.cpp Normal file
View File

@@ -0,0 +1,21 @@
#include "testblackcoremain.h"
#include <QCoreApplication>
#include <QDebug>
using namespace BlackCoreTest;
/*!
* Starter for test cases
* \brief main
* \param argc
* \param argv
* \return
*/
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
CBlackCoreTestMain::unitMain(argc, argv);
// bye
return a.exec();
}