1 /*
2     SPDX-FileCopyrightText: 2021 Mladen Milinkovic <max@smoothware.net>
3 
4     SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #ifndef SUBTITLESORTTEST_H
8 #define SUBTITLESORTTEST_H
9 
10 #include "core/subtitle.h"
11 
12 #include <QObject>
13 
14 class SubtitleTest : public QObject
15 {
16 	Q_OBJECT
17 
18 	SubtitleComposer::Subtitle sub;
19 
20 private slots:
21 	void testSort_data();
22 	void testSort();
23 };
24 
25 #endif // SUBTITLESORTTEST_H
26