summaryrefslogtreecommitdiff
path: root/tests/test-libplayback.h
blob: 75a04edff5c10df47bce9c522e550d47e3a9a967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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