File indexing completed on 2025-03-09 04:54:32
0001 /* 0002 SPDX-FileCopyrightText: 2018 Sandro Knauß <sknauss@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 #pragma once 0007 0008 #include <QObject> 0009 0010 class GrantleeHeaderStyleTest : public QObject 0011 { 0012 Q_OBJECT 0013 0014 public Q_SLOTS: 0015 void initTestCase(); 0016 void cleanupTestCase(); 0017 0018 private Q_SLOTS: 0019 void testName(); 0020 void testRenderHeaderNoMessage(); 0021 void testRenderHeaderInvalidTheme(); 0022 void testRenderHeaderEmpty(); 0023 void testRenderHeaderVCard(); 0024 void testRenderHeader_data(); 0025 void testRenderHeader(); 0026 0027 private: 0028 QString expectedDataLocation; 0029 };