MainWindowTest.h 812 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10 11 12 13 14 15 16 17 18 19

/// @file
///     @brief Simple MainWindow unit test
///
///     @author Don Gagne <don@thegagnes.com>

#ifndef MAINWINDOWTEST_H
#define MAINWINDOWTEST_H

#include "UnitTest.h"
20
#include "MainWindow.h"
Don Gagne's avatar
Don Gagne committed
21 22 23 24 25 26

class MainWindowTest : public UnitTest
{
    Q_OBJECT
    
private slots:
27
    void _connectWindowClosePX4_test(void);
28 29
    void _connectWindowCloseGeneric_test(void);

30
private:
31
    void _connectWindowClose_test(MAV_AUTOPILOT autopilot);
Don Gagne's avatar
Don Gagne committed
32 33 34
};

#endif