File indexing completed on 2025-02-16 04:57:36

0001 /* SPDX-FileCopyrightText: 2015 Sandro Knauß <bugs@sandroknauss.de>
0002 
0003    SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 */
0005 #pragma once
0006 
0007 #include <QObject>
0008 
0009 #include <KMime/Message>
0010 
0011 namespace MimeTreeParser
0012 {
0013 class NodeHelperTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     NodeHelperTest();
0019 
0020 private Q_SLOTS:
0021     void testPersistentIndex();
0022     void testLocalFiles();
0023     void testHREF();
0024     void testCreateTempDir();
0025     void testFromAsString();
0026     void shouldTestExtractAttachmentIndex_data();
0027     void shouldTestExtractAttachmentIndex();
0028 };
0029 }