mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
23 lines
437 B
C++
23 lines
437 B
C++
#ifndef TESTMAIN_H
|
|
#define TESTMAIN_H
|
|
|
|
#include <QtTest/QtTest>
|
|
#include "testphysicalquantitiesbase.h"
|
|
#include "testaviationbase.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 CTestMain
|
|
{
|
|
public:
|
|
static int unitMain(int argc, char *argv[]);
|
|
};
|
|
}
|
|
|
|
#endif // TESTMAIN_H
|