Moved PQs from blackcore to blackmisc, added header for namespace, mainpage.dox for Doxygen

This commit is contained in:
Klaus Basan
2013-03-22 16:07:53 +01:00
parent 969f0c879f
commit 525910c7a3
34 changed files with 237 additions and 112 deletions

View File

@@ -0,0 +1,21 @@
#ifndef TESTMAIN_H
#define TESTMAIN_H
#include <QtTest/QtTest>
#include "testphysicalquantitiesbase.h"
namespace BlackMiscTest{
/*!
* Class firing of all unit tests in this namespace.
* Avoids clashes with other main(..) functions and allows to fire the test cases
* simply from any other main.
*/
class TestMain
{
public:
static int unitMain(int argc, char *argv[]);
};
}
#endif // TESTMAIN_H