summaryrefslogtreecommitdiff
path: root/tests/test-libplayback.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-libplayback.h')
-rw-r--r--tests/test-libplayback.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/test-libplayback.h b/tests/test-libplayback.h
new file mode 100644
index 0000000..75a04ed
--- /dev/null
+++ b/tests/test-libplayback.h
@@ -0,0 +1,22 @@
+#ifndef TEST_RESOURCE_FACTORY_H
+#define TEST_RESOURCE_FACTORY_H
+
+#include <QtTest/QTest>
+#include "resource-factory.h"
+
+class TestLibplayback: public QObject
+{
+ Q_OBJECT
+private:
+ ResourceLibrary *resourceLibrary;
+ ResourceFactory *resourceFactory;
+public:
+ TestLibplayback();
+ ~TestLibplayback();
+private slots:
+ void initTestCase();
+
+ void testCreateResource();
+};
+
+#endif