Changed order of samples directory, started with aviation classes.

This commit is contained in:
Klaus Basan
2013-04-01 21:53:35 +02:00
parent f77258343d
commit 943872ff67
34 changed files with 911 additions and 147 deletions

View 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