Initial version of physical quantities

This commit is contained in:
Klaus Basan
2013-03-20 16:59:32 +01:00
parent ca20cf5569
commit 969f0c879f
29 changed files with 2482 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
#ifndef TESTMAIN_H
#define TESTMAIN_H
#include <QtTest/QtTest>
#include "testphysicalquantitiesbase.h"
using namespace BlackCore;
using namespace BlackCoreTest;
namespace BlackCoreTest{
/*!
* 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