mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
49 lines
839 B
C++
49 lines
839 B
C++
#ifndef TESTAVIATIONBASE_H
|
|
#define TESTAVIATIONBASE_H
|
|
|
|
#include <QtTest/QtTest>
|
|
#include "blackmisc/pqconstants.h"
|
|
#include "blackmisc/avheading.h"
|
|
#include "blackmisc/avverticalpositions.h"
|
|
#include "blackmisc/aviocomsystem.h"
|
|
|
|
using namespace BlackMisc;
|
|
|
|
namespace BlackMiscTest {
|
|
|
|
/*!
|
|
* \brief Aviation classes basic tests
|
|
*/
|
|
class CTestAviationBase : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/*!
|
|
* \brief Standard test case constructor
|
|
* \param parent
|
|
*/
|
|
explicit CTestAviationBase(QObject *parent = 0);
|
|
|
|
private slots:
|
|
/*!
|
|
* \brief Basic unit tests for physical units
|
|
*/
|
|
void headingBasics();
|
|
|
|
/*!
|
|
* \brief Vertical positions
|
|
*/
|
|
void verticalPosition();
|
|
|
|
/*!
|
|
* \brief COM and NAV units
|
|
*/
|
|
void comAndNav();
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
#endif // TESTAVIATIONBASE_H
|