1 /*  This file is part of the KDE project
2     SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
3     SPDX-FileContributor: Kevin Krammer <krake@kdab.com>
4 
5     SPDX-License-Identifier: LGPL-2.0-or-later
6 */
7 
8 #pragma once
9 
10 class QString;
11 #include <QStringList>
12 
13 namespace TestDataUtil
14 {
15 enum FolderType {
16     InvalidFolder,
17     MaildirFolder,
18     MBoxFolder,
19 };
20 
21 FolderType folderType(const QString &testDataName);
22 
23 QStringList testDataNames();
24 
25 bool installFolder(const QString &testDataName, const QString &installPath, const QString &folderName);
26 }
27 
28