File indexing completed on 2024-06-23 04:34:44

0001 /*
0002     SPDX-FileCopyrightText: 2016 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_TEST_STRINGHELPERS_H
0008 #define KDEVPLATFORM_TEST_STRINGHELPERS_H
0009 
0010 #include <QObject>
0011 
0012 class TestStringHelpers
0013     : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private Q_SLOTS:
0018     void initTestCase();
0019 
0020     void testFormatComment_data();
0021     void testFormatComment();
0022 
0023     void benchFormatComment();
0024 
0025     void testParamIterator_data();
0026     void testParamIterator();
0027 };
0028 
0029 #endif // KDEVPLATFORM_TEST_STRINGHELPERS_H