File indexing completed on 2024-06-16 04:59:05

0001 /*
0002   SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0003 
0004   SPDX-License-Identifier: GPL-2.0-only
0005 */
0006 #pragma once
0007 
0008 #include <QObject>
0009 
0010 class SearchRuleStringTest : public QObject
0011 {
0012     Q_OBJECT
0013 public:
0014     explicit SearchRuleStringTest(QObject *parent = nullptr);
0015 
0016 private Q_SLOTS:
0017     void shouldHaveDefaultValue();
0018     void shouldMatchString();
0019     void shouldHaveRequirePart_data();
0020     void shouldHaveRequirePart();
0021     void shouldMatchString_data();
0022     void shouldBeEmpty();
0023 };