Warning, file /frameworks/ktexteditor/autotests/src/indentdetect_test.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2022 Waqar Ahmed <waqar.17a@gmail.com>
0003     SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 #ifndef INDENT_DETECT_TEST_H
0006 #define INDENT_DETECT_TEST_H
0007 
0008 #include <QObject>
0009 
0010 class IndentDetectTest : public QObject
0011 {
0012     Q_OBJECT
0013 
0014 private Q_SLOTS:
0015     void test_data();
0016     void test();
0017     void bench();
0018 };
0019 
0020 #endif