mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 08:36:52 +08:00
26 lines
466 B
C++
26 lines
466 B
C++
#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
|