aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/tests/testaddfunction.h
blob: 77339609fcae3cb91527b77dbf1293c5d2808c26 (plain)
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
28
29
30
31
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef TESTADDFUNCTION_H
#define TESTADDFUNCTION_H
#include <QtCore/QObject>

class TestAddFunction : public QObject
{
    Q_OBJECT
private slots:
    void testParsingFuncNameAndConstness();
    void testAddFunction();
    void testAddFunctionConstructor();
    void testAddFunctionTagDefaultValues();
    void testAddFunctionCodeSnippets();
    void testAddFunctionWithoutParenteses();
    void testAddFunctionWithDefaultArgs();
    void testAddFunctionAtModuleLevel();
    void testAddFunctionWithVarargs();
    void testAddStaticFunction();
    void testAddGlobalFunction();
    void testAddFunctionWithApiVersion();
    void testModifyAddedFunction();
    void testAddFunctionOnTypedef();
    void testAddFunctionWithTemplateArg();
    void testAddFunctionTypeParser_data();
    void testAddFunctionTypeParser();
};

#endif