File indexing completed on 2024-04-21 03:53:39

0001 /*
0002     This file is part of the KDE libraries
0003 
0004     SPDX-FileCopyrightText: 2021 Waqar Ahmed <waqar.17a@gmail.com>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 #ifndef KFUZZYMATCHERTEST_H
0009 #define KFUZZYMATCHERTEST_H
0010 
0011 #include <QObject>
0012 
0013 class KFuzzyMatcherTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private Q_SLOTS:
0018     void testMatchSimple_data();
0019     void testMatchSimple();
0020     void testMatch_data();
0021     void testMatch();
0022     void testMatchedRanges_data();
0023     void testMatchedRanges();
0024 };
0025 
0026 #endif // KFUZZYMATCHERTEST_H