Playing around with qtestlibs data driven testing (Added MediaTypeTest
[emufront] / testing / EmuFrontTesting / mediatypetest.h
1 #ifndef MEDIATYPETEST_H
2 #define MEDIATYPETEST_H
3
4 #include <QObject>
5 #include <QtTest/QtTest>
6 #include "../../src/dataobjects/mediatype.h"
7 #include "../../src/dataobjects/emufrontfile.h"
8
9 Q_DECLARE_METATYPE(EmuFrontFile)
10 Q_DECLARE_METATYPE(MediaType)
11
12 class MediaTypeTest : public QObject
13 {
14     Q_OBJECT
15
16 private slots:
17     void equals();
18     void equals_data();
19 };
20
21 #endif // MEDIATYPETEST_H