mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-15 01:05:35 +08:00
Changed order of samples directory, started with aviation classes.
This commit is contained in:
41
tests/blackmisc/testaviationbase.h
Normal file
41
tests/blackmisc/testaviationbase.h
Normal file
@@ -0,0 +1,41 @@
|
||||
#ifndef TESTAVIATIONBASE_H
|
||||
#define TESTAVIATIONBASE_H
|
||||
|
||||
#include <QtTest/QtTest>
|
||||
#include "blackmisc/pqconstants.h"
|
||||
#include "blackmisc/avheading.h"
|
||||
#include "blackmisc/avverticalpositions.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();
|
||||
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // TESTAVIATIONBASE_H
|
||||
Reference in New Issue
Block a user