File indexing completed on 2025-01-26 04:58:13
0001 /* 0002 Copyright (C) 2010 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com 0003 Copyright (c) 2010 Leo Franchi <lfranchi@kde.org> 0004 0005 This library is free software; you can redistribute it and/or modify it 0006 under the terms of the GNU Library General Public License as published by 0007 the Free Software Foundation; either version 2 of the License, or (at your 0008 option) any later version. 0009 0010 This library is distributed in the hope that it will be useful, but WITHOUT 0011 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 0012 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 0013 License for more details. 0014 0015 You should have received a copy of the GNU Library General Public License 0016 along with this library; see the file COPYING.LIB. If not, write to the 0017 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 0018 02110-1301, USA. 0019 */ 0020 0021 #ifndef MESSAGECORE_TESTS_UTIL_H 0022 #define MESSAGECORE_TESTS_UTIL_H 0023 0024 #include <bodypartformatter.h> 0025 #include <bodypartformatterbasefactory.h> 0026 0027 namespace MimeTreeParser 0028 { 0029 0030 namespace Test 0031 { 0032 0033 /** 0034 * setup a environment variables for tests: 0035 * * set LC_ALL to C 0036 * * set KDEHOME 0037 */ 0038 void setupEnv(); 0039 0040 } 0041 0042 } 0043 0044 #endif