File indexing completed on 2024-12-22 04:57:38

0001 /*  This file is part of the KDE project
0002     SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
0003     SPDX-FileContributor: Kevin Krammer <krake@kdab.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #pragma once
0009 
0010 class QString;
0011 #include <QStringList>
0012 
0013 namespace TestDataUtil
0014 {
0015 enum FolderType {
0016     InvalidFolder,
0017     MaildirFolder,
0018     MBoxFolder,
0019 };
0020 
0021 FolderType folderType(const QString &testDataName);
0022 
0023 QStringList testDataNames();
0024 
0025 bool installFolder(const QString &testDataName, const QString &installPath, const QString &folderName);
0026 }