kfuzzymatchertest.h 525 B

1234567891011121314151617181920212223242526
  1. /*
  2. This file is part of the KDE libraries
  3. SPDX-FileCopyrightText: 2021 Waqar Ahmed <waqar.17a@gmail.com>
  4. SPDX-License-Identifier: LGPL-2.0-or-later
  5. */
  6. #ifndef KFUZZYMATCHERTEST_H
  7. #define KFUZZYMATCHERTEST_H
  8. #include <QObject>
  9. class KFuzzyMatcherTest : public QObject
  10. {
  11. Q_OBJECT
  12. private Q_SLOTS:
  13. void testMatchSimple_data();
  14. void testMatchSimple();
  15. void testMatch_data();
  16. void testMatch();
  17. void testMatchedRanges_data();
  18. void testMatchedRanges();
  19. };
  20. #endif // KFUZZYMATCHERTEST_H