File indexing completed on 2024-05-19 15:46:18

0001 /*
0002     SPDX-FileCopyrightText: 2010 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef TEST_QMAKEFILE_H
0008 #define TEST_QMAKEFILE_H
0009 
0010 #include <QObject>
0011 
0012 class TestQMakeFile : public QObject {
0013     Q_OBJECT
0014 
0015 private Q_SLOTS:
0016     void initTestCase();
0017 
0018     void varResolution_data();
0019     void varResolution();
0020 
0021     void referenceParser_data();
0022     void referenceParser();
0023 
0024     void libTarget_data();
0025     void libTarget();
0026 
0027     void defines_data();
0028     void defines();
0029 
0030     void replaceFunctions_data();
0031     void replaceFunctions();
0032 
0033     void qtIncludeDirs_data();
0034     void qtIncludeDirs();
0035 
0036     void testInclude();
0037 
0038     void globbing_data();
0039     void globbing();
0040 
0041     void benchGlobbing();
0042     void benchGlobbingNoPattern();
0043 };
0044 
0045 #endif // TEST_QMAKEFILE_H