1
/****************************************************************************
2
**
3
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4
** All rights reserved.
5
** Contact: Nokia Corporation (qt-info@nokia.com)
6
**
7
** This file is part of the test suite of the Qt Toolkit.
8
**
9
** $QT_BEGIN_LICENSE:LGPL$
10
** GNU Lesser General Public License Usage
11
** This file may be used under the terms of the GNU Lesser General Public
12
** License version 2.1 as published by the Free Software Foundation and
13
** appearing in the file LICENSE.LGPL included in the packaging of this
14
** file. Please review the following information to ensure the GNU Lesser
15
** General Public License version 2.1 requirements will be met:
16
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17
**
18
** In addition, as a special exception, Nokia gives you certain additional
19
** rights. These rights are described in the Nokia Qt LGPL Exception
20
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21
**
22
** GNU General Public License Usage
23
** Alternatively, this file may be used under the terms of the GNU General
24
** Public License version 3.0 as published by the Free Software Foundation
25
** and appearing in the file LICENSE.GPL included in the packaging of this
26
** file. Please review the following information to ensure the GNU General
27
** Public License version 3.0 requirements will be met:
28
** http://www.gnu.org/copyleft/gpl.html.
29
**
30
** Other Usage
31
** Alternatively, this file may be used in accordance with the terms and
32
** conditions contained in a signed written agreement between you and Nokia.
33
**
34
**
35
**
36
**
37
**
38
** $QT_END_LICENSE$
39
**
40
****************************************************************************/
41
42
43
#include <QString>
44
#include <QtTest/QtTest>
45
#include <QtDebug>
46
47
class tst_q_func_info : public QObject
48
{
49
    Q_OBJECT
50
51
private slots:
52
    void callFunctions() const;
53
    void isOfTypeConstChar() const;
54
    void availableWithoutDebug() const;
55
56
private:
57
58
    static void staticMember();
59
    void regularMember() const;
60
    void memberWithArguments(const QString &string, int value, const int value2) const;
61
};
62
63
static void staticRegularFunction()
64
{
65
    qDebug() << Q_FUNC_INFO;
66
}
67
68
void regularFunction()
69
{
70
    qDebug() << Q_FUNC_INFO;
71
}
72
73
template<typename T>
74
void templateFunction()
75
{
76
    qDebug() << Q_FUNC_INFO;
77
}
78
79
template<typename T, const int value>
80
void valueTemplateFunction()
81
{
82
    qDebug() << Q_FUNC_INFO;
83
}
84
85
void tst_q_func_info::staticMember()
86
{
87
    qDebug() << Q_FUNC_INFO;
88
}
89
90
void tst_q_func_info::regularMember() const
91
{
92
    qDebug() << Q_FUNC_INFO;
93
}
94
95
void tst_q_func_info::memberWithArguments(const QString &, int, const int) const
96
{
97
    qDebug() << Q_FUNC_INFO;
98
}
99
100
/*! \internal
101
    We don't do much here. We call different kinds of
102
    functions to make sure we don't crash anything or that valgrind
103
    is unhappy.
104
 */
105
void tst_q_func_info::callFunctions() const
106
{
107
    staticRegularFunction();
108
    regularFunction();
109
    templateFunction<char>();
110
    valueTemplateFunction<int, 3>();
111
112
    staticMember();
113
    regularMember();
114
    memberWithArguments(QString(), 3, 4);
115
}
116
117
void tst_q_func_info::isOfTypeConstChar() const
118
{
119
#ifndef QT_NO_DEBUG
120
    QString::fromLatin1(Q_FUNC_INFO);
121
#endif
122
}
123
124
/* \internal
125
    Ensure that the macro is available even though QT_NO_DEBUG
126
    is defined. We do this by undefining it, and turning it on again
127
    backwards(just so we don't break stuff), if it was in fact defined.
128
 */
129
void tst_q_func_info::availableWithoutDebug() const
130
{
131
#ifndef QT_NO_DEBUG
132
#   define USE_DEBUG
133
#   define QT_NO_DEBUG
134
#endif
135
#undef QT_NO_DEBUG
136
    QString::fromLatin1(Q_FUNC_INFO);
137
#ifdef USE_DEBUG
138
#   undef QT_NO_DEBUG
139
#   undef USE_DEBUG
140
#endif
141
}
142
143
QTEST_MAIN(tst_q_func_info)
144
145
#include "tst_q_func_info.moc"