Test stuff
[irwi] / ut / ut_remote / ut_remote.h
diff --git a/ut/ut_remote/ut_remote.h b/ut/ut_remote/ut_remote.h
new file mode 100644 (file)
index 0000000..d0373c4
--- /dev/null
@@ -0,0 +1,29 @@
+#ifndef UT_REMOTE_H
+#define UT_REMOTE_H
+
+#include <QObject>
+
+class Remote;
+
+class Ut_Remote : public QObject
+{
+    Q_OBJECT
+
+private slots:
+    void initTestCase();
+    void cleanupTestCase();
+    void init();
+    void cleanup();
+
+    void testSaveToFile_normal();
+    void testSaveToFile_emptyname();
+    void testUpdateInfo();
+    void testSendRating();
+
+private:
+    Remote *subject;
+};
+
+#endif // UT_REMOTE_H
+
+