File indexing completed on 2024-04-28 04:48:50

0001 /*
0002    SPDX-FileCopyrightText: 2016 (c) Matthieu Gallien <matthieu_gallien@yahoo.fr>
0003 
0004    SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 #ifndef MANAGEMEDIAPLAYERCONTROLTEST_H
0008 #define MANAGEMEDIAPLAYERCONTROLTEST_H
0009 
0010 #include <QObject>
0011 
0012 #include "databasetestdata.h"
0013 
0014 
0015 class ManageMediaPlayerControlTest : public QObject, public DatabaseTestData
0016 {
0017 
0018     Q_OBJECT
0019 
0020 public:
0021 
0022     explicit ManageMediaPlayerControlTest(QObject *parent = nullptr);
0023 
0024 Q_SIGNALS:
0025 
0026 private Q_SLOTS:
0027 
0028     void initTestCase();
0029 
0030     void simpleInitialCase();
0031 
0032     void testPlayingCase();
0033 
0034     void testTracksCase();
0035 };
0036 
0037 #endif // MANAGEMEDIAPLAYERCONTROLTEST_H