/**************************************************************************** * * (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. * ****************************************************************************/
/// @file/// @brief Unit test for QGCFileDialog catching mechanism.////// @author Don Gagne <don@thegagnes.com>#ifndef FILEDIALOGTEST_H#define FILEDIALOGTEST_H#include "UnitTest.h"classFileDialogTest:publicUnitTest{Q_OBJECTpublic:FileDialogTest(void);privateslots:void_fileDialogExpected_test(void);void_fileDialogUnexpected_test(void);void_previousFileDialog_test(void);void_noFileDialog_test(void);void_fileDialogExpectedIncorrect_test(void);};#endif