Better wording
[kdepim.git] / kleopatra / tests / kleo_test.h
blob079966b944ee0b294ff3d8815c4684f8583f2b92
1 /*
2 This file is part of Kleopatra's test suite.
3 Copyright (c) 2007 Klarälvdalens Datakonsult AB
5 Kleopatra is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 Kleopatra is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 In addition, as a special exception, the copyright holders give
20 permission to link the code of this program with any edition of
21 the Qt library by Trolltech AS, Norway (or with modified versions
22 of Qt that use the same license as Qt), and distribute linked
23 combinations including the two. You must obey the GNU General
24 Public License in all respects for all of the code used other than
25 Qt. If you modify this file, you may extend this exception to
26 your version of the file, but you are not obligated to do so. If
27 you do not wish to do so, delete this exception statement from
28 your version.
31 #ifndef KLEO_TEST_H
32 #define KLEO_TEST_H
34 #include <qtest_kde.h>
36 #ifndef KLEO_TEST_GNUPGHOME
37 #error KLEO_TEST_GNUPGHOME not defined!
38 #endif
40 // based on qtest_kde.h
41 #define QTEST_KLEOMAIN(TestObject, flags) \
42 int main(int argc, char *argv[]) \
43 { \
44 setenv("GNUPGHOME", KLEO_TEST_GNUPGHOME, 1 ); \
45 setenv("LC_ALL", "C", 1); \
46 setenv("KDEHOME", QFile::encodeName( QDir::homePath() + "/.kde-unit-test" ), 1); \
47 KAboutData aboutData( "qttest", 0, ki18n("qttest"), "version" ); \
48 KDEMainFlags mainFlags = flags; \
49 KComponentData cData(&aboutData); \
50 QApplication app( argc, argv, (mainFlags & GUI) != 0 ); \
51 app.setApplicationName( "qttest" ); \
52 TestObject tc; \
53 return QTest::qExec( &tc, argc, argv ); \
56 #endif