File indexing completed on 2025-03-09 04:54:34
0001 /* SPDX-FileCopyrightText: 2016 Sandro Knauß <sknauss@kde.org> 0002 0003 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0004 */ 0005 #pragma once 0006 0007 #include <QObject> 0008 0009 class QuoteHtmlTest : public QObject 0010 { 0011 Q_OBJECT 0012 0013 public Q_SLOTS: 0014 void initTestCase(); 0015 0016 private Q_SLOTS: 0017 void testQuoteHtml(); 0018 void testQuoteHtml_data(); 0019 0020 private: 0021 QString mCollapseIcon; 0022 QString mExpandIcon; 0023 };