File indexing completed on 2024-04-14 03:54:53

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