1 /*
2   SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
3   SPDX-FileCopyrightText: 2017-2021 Laurent Montel <montel@kde.org>
4 
5   SPDX-License-Identifier: LGPL-2.0-or-later
6 */
7 
8 #pragma once
9 
10 #include <QObject>
11 
12 class UtilTest : public QObject
13 {
14     Q_OBJECT
15 public:
16     explicit UtilTest(QObject *parent = nullptr);
17 private Q_SLOTS:
18     void testSelectCharset();
19     void shouldTestHasMissingAttachment();
20     void shouldTestHasMissingAttachment_data();
21 };
22 
23