summaryrefslogtreecommitdiff
path: root/tests/test-libplayback.h
blob: 9c294e611f26136f7fa7a660571f6c57d05c7ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef TEST_RESOURCE_FACTORY_H
#define TEST_RESOURCE_FACTORY_H

#include <QtTest/QTest>
#include "resource-factory.h"
#include "resource.h"

class TestLibplayback: public QObject
{
   Q_OBJECT
private:
   ResourceFactory *resourceFactory;
   Resource *resource;
public:
   TestLibplayback();
   ~TestLibplayback();
private slots:
   void initTestCase();

   void testConnectToServer();
};

#endif