SlugsMavUnitTest.h 465 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
#ifndef SLUGSMAVUNITTEST_H
#define SLUGSMAVUNITTEST_H

#include <QObject>
#include <QtCore/QString>
#include <QtTest/QtTest>
#include "UAS.h"
#include "MAVLinkProtocol.h"
#include "UASInterface.h"
#include "AutoTest.h"

class SlugsMavUnitTest : public QObject
{
    Q_OBJECT
public:
  SlugsMavUnitTest();
signals:

private slots:
  void initTestCase();
  void cleanupTestCase();
  void first_test();
};

DECLARE_TEST(SlugsMavUnitTest)

#endif // SLUGSMAVUNITTEST_H