File indexing completed on 2024-06-16 04:38:27

0001 /*
0002     SPDX-FileCopyrightText: 2021-2022 Mladen Milinkovic <max@smoothware.net>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef RICHCSSTEST_H
0008 #define RICHCSSTEST_H
0009 
0010 #include "core/richtext/richcss.h"
0011 
0012 #include <QObject>
0013 
0014 class RichCssTest : public QObject
0015 {
0016     Q_OBJECT
0017 
0018     SubtitleComposer::RichCSS css;
0019 
0020 private slots:
0021     void testParseSelector_data();
0022     void testParseSelector();
0023 
0024     void testParseRules_data();
0025     void testParseRules();
0026 };
0027 
0028 #endif // RICHCSSTEST_H