Skip to content
Snippets Groups Projects
FileDialogTest.h 852 B
Newer Older
  • Learn to ignore specific revisions
  • /****************************************************************************
     *
    
     *   (c) 2009-2018 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.
     *
     ****************************************************************************/
    
    
    ///     @brief Unit test for QGCQFileDialog catching mechanism.
    
    ///
    ///     @author Don Gagne <don@thegagnes.com>
    
    
    
    #include "UnitTest.h"
    
    class FileDialogTest : public UnitTest
    {
        Q_OBJECT
        
    public:
        FileDialogTest(void);
        
    private slots:
        void _fileDialogExpected_test(void);
        void _fileDialogUnexpected_test(void);
        void _previousFileDialog_test(void);
        void _noFileDialog_test(void);
        void _fileDialogExpectedIncorrect_test(void);
    };