Playing around with my first unit test example.
[emufront] / testing / EmuFrontTesting / platformtest.h
index 623d598..7e50e9b 100644 (file)
@@ -4,12 +4,21 @@
 #include <QObject>
 #include <QtTest/QtTest>
 
+class EmuFrontFile;
+
 class PlatformTest : public QObject
 {
     Q_OBJECT
 
 private slots:
+    void initTestCase();
+    void cleanupTestCase();
+    void notEquals();
     void equals();
+    void equals_data();
+
+private:
+    EmuFrontFile *efile;
 
 };