added TODO
[emufront] / testing / EmuFrontTesting / platformtest.h
1 #ifndef PLATFORMTEST_H
2 #define PLATFORMTEST_H
3
4 #include <QObject>
5 #include <QtTest/QtTest>
6 #include "../../src/dataobjects/platform.h"
7 #include "../../src/dataobjects/emufrontfile.h"
8
9 //Q_DECLARE_METATYPE(EmuFrontFile)
10 //Q_DECLARE_METATYPE(Platform)
11
12 class PlatformTest : public QObject
13 {
14     Q_OBJECT
15
16 private slots:
17     void init();
18     void cleanup();
19     void initTestCase();
20     void cleanupTestCase();
21     void equals2();
22     void notEquals();
23     //void equals();
24     //void equals_data();
25 };
26
27 #endif // PLATFORMTEST_H