mirror of
https://github.com/LMMS/lmms.git
synced 2026-02-02 10:44:21 -05:00
22 lines
329 B
C++
22 lines
329 B
C++
#ifndef QTESTSUITE_H
|
|
#define QTESTSUITE_H
|
|
|
|
#include <QtTest/QTest>
|
|
#include <QObject>
|
|
#include <QList>
|
|
|
|
class QTestSuite : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit QTestSuite(QObject *parent = 0);
|
|
~QTestSuite();
|
|
|
|
static QList<QTestSuite*> suites();
|
|
|
|
private:
|
|
static QList<QTestSuite*> m_suites;
|
|
};
|
|
|
|
#endif // QTESTSUITE_H
|