File indexing completed on 2024-04-14 05:12:19

0001 /*
0002     SPDX-FileCopyrightText: 2006 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 class UtilTest : public QObject
0012 {
0013     Q_OBJECT
0014 private Q_SLOTS:
0015     void testUnfoldHeader();
0016     void testFoldHeader();
0017     void testExtractHeader();
0018     void testBalanceBidiState();
0019     void testBalanceBidiState_data();
0020     void testAddQuotes();
0021     void testAddQuotes_data();
0022     void testIsSigned_data();
0023     void testIsSigned();
0024     void testIsCryptoPart_data();
0025     void testIsCryptoPart();
0026     void testLFCRLF_data();
0027     void testLFCRLF();
0028     void testLFCRLF_performance();
0029 };
0030 
0031