File indexing completed on 2025-01-19 04:46:48

0001 /*
0002   SPDX-FileCopyrightText: 2010 Volker Krause <vkrause@kde.org>
0003   SPDX-FileCopyrightText: 2016 Sandro Knauß <sknauss@kde.org>
0004 
0005   SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 class RenderTest : public QObject
0012 {
0013     Q_OBJECT
0014 
0015 public Q_SLOTS:
0016     void initTestCase();
0017 
0018 private Q_SLOTS:
0019     void testRender_data();
0020     void testRender();
0021     void testRenderKeyDetails_data();
0022     void testRenderKeyDetails();
0023 };